Forum Replies Created
-
AuthorPosts
-
Hey Gerd,
You are welcome!
Great! Please feel free to reply to this thread with further questions and we will gladly try to answer them as well :)
Regards,
YigitHallo,
Thanks for reaching out to us!
I hope you do not mind me replying in English as I am not one of the German speaking moderators :)
Enfold has German language files. If your WordPress installation is in German, those language files will be used. Also, we have a documentation here – https://kriesi.at/documentation/enfold/ and provide support through our support forum so you can contact us whenever you have a question or an issue :)
We do not work with any image service however Enfold is fully compatible with WooCommerce and you can use it to sell your fine art prints on your website. Here are my favourite Enfold demos to showcase fine art:
– https://kriesi.at/themes/enfold-elegant-portfolio/
– https://kriesi.at/themes/enfold-minimal-photography/
– https://kriesi.at/themes/enfold-dark-photography/I hope that helps! Let us know if you have any other questions and enjoy the rest of your day :)
Regards,
YigitHey!
I have replaced enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-product-slider.php file with this one – https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_5_0_1/framework/class-avia-product-slider.php. Could you please check the issue once again?
The fix will be included in upcoming version :)
Best regards,
YigitHi!
Please go to Appearance > Theme File Editor and edit enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-product-slider.php file and replace the content of the file with this one – https://raw.githubusercontent.com/KriesiMedia/enfold-library/master/temp_fixes/Enfold_5_0_1/framework/class-avia-product-slider.php
If you would like us to update the file for you, please post FTP logins here privately.
The fix will be included in upcoming version :)
Cheers!
YigitHey,
Please go to Appearance > Theme File Editor and edit enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-product-slider.php file and replace the content of the file with this one – https://raw.githubusercontent.com/KriesiMedia/enfold-library/master/temp_fixes/Enfold_5_0_1/framework/class-avia-product-slider.php
If you would like us to update the file for you, please post FTP logins here privately.
The fix will be included in upcoming version :)
Cheers!
YigitHi,
Thanks for contacting us!
1- Yes, that would be possible but you would need to use WooCommerce hooks and adding content this way would not be practical or user friendly.
2- You can use Product Info Tab element under Plugin Additions tab of ALB however it would not display Description tab. If you would like to add description tab a workaround would be adding Tabs element to your product page, enabling ALB debug mode – https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode, adding elements you would like to add inside tabs to your product page, copy their shortcodes from debug field displayed right below ALB and paste shortcodes into tab content.
I hope that helps :)
Cheers!
YigitHey,
Thanks for contacting us!
Could you please go to Enfold theme options > Performance and disable JS file merging and compression, save theme options and clear cache? If that does not help, please try de-activating all active plugins and check if that helps :)
Regards,
YigitHey,
Glad you figured it out!
Let us know if you have any other questions and enjoy the rest of your day :)
Regards,
YigitHey,
And thank you for the continued suggestions and feedback guys. Please keep them coming :)
As you know, some features take longer than the others to implement but we do not forget about them. This thread was already merged with – https://kriesi.at/support/topic/woocommerce-focused-upgrades/ and https://kriesi.at/support/topic/switch-from-theme-images-to-svgs/ threads on our GitHub and header builder is a separate one :)
Regards,
YigitJune 29, 2022 at 4:01 pm in reply to: Folder for Theme is so large – cannot scan or back up on server #1356883Hey,
Thanks for contacting us!
Please refer to this post – https://kriesi.at/documentation/enfold/optimization/#troubleshoot :)
Cheers!
YigitHi Martin,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
.av-masonry-date { display: none; }Best regards,
YigitHey,
Thanks for contacting us!
I checked your website however I do could not reproduce the issue. I attached a screenshot in private content field below.
If we need to take certain steps to reproduce the issue, could you please write them down? :)
Best regards,
YigitHi,
Please firstly try updating header.php file on your child theme. You can simply copy a fresh header.php file from the parent theme, re-apply your modifications on the file and replace it with your current header.php file. Please make sure to have a backup to be on the safe side :)
Best regards,
YigitHi,
We are happy that Nikko and Guenni007 could help! :)
For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)
Enjoy the rest of your day!
Best regards,
YigitHey fkm,
Thanks for contacting us!
Please edit your Color Section element and give it a custom ID (“section-container-width” in example below) in Advanced > Developer Settings tab and then add following code to bottom of Quick CSS field in Enfold theme options > General Styling tab
@media only screen and (max-width: 767px) { #section-container-width .container { width: 100% !important; min-width: 100%; padding: 0; margin: 0; }}Regards,
YigitHey Michael,
Thanks for contacting us!
Please edit your Blog Posts element and go to Filter > Offset Number and choose not to allow duplicate posts – https://imgur.com/a/2KEGYqC? :)
Cheers!
YigitHey Vera,
I checked your website and it seems like the warning does not cause any issues so I updated the file to hide the warning.
Please review your website :)
Best regards,
YigitHi,
Thanks for contacting us!
You can go to Enfold theme options > Main Menu > General and enable “Append Search Icon To Main Menu” :)
If you have any other questions or issues, please start a thread on our support forum – https://kriesi.at/support :)
Regards,
YigitHey,
Thanks for contacting us!
I temporarily switched to parent theme and breadcrumbs displayed the translation correctly. I attached a screenshot in private content field below.
Issue seems to be related to the modifications done on the child theme.
As a temporary solution, I added following code to bottom of Functions.php file of your child theme to translate “You are here:”
add_filter('avia_breadcrumbs_args', 'av_custom_tax_title', 10, 1); function av_custom_tax_title($args) { $args['before'] = '<span class="breadcrumb-title">' . __( 'Sei in:', 'avia_framework' ) . '</span>'; return $args; }Please review your website :)
Best regards,
YigitHey Christoph,
Thanks for contacting us!
Could you please add following code to bottom of functions.php file of your child theme
add_filter( 'avf_output_google_webfonts_script', 'my_output_google_webfonts_script', 10, 1 ); function my_output_google_webfonts_script( $activate ) { return false; }and refer to this post instead – https://kriesi.at/documentation/enfold/typography/#how-to-download-google-fonts to load your Google fonts? :)
Regards,
YigitHi E.S,
Thanks for reaching out to us and sorry for the late reply!
The issue seems to be related to slider having 500px width. On my end it is in center with overlay on the sides. I attached a screenshot in private content field below.
Would it be possible for you increase the width of the slider to 767px? :)
Best regards,
YigitHi Luigi,
Thanks for your contribution! We have included the language files and they will be available in upcoming version :)
Best regards,
YigitJune 21, 2022 at 2:23 pm in reply to: General Styling – Fonts > there are no font size selections #1356007Hi,
Thanks for contacting us!
Please go to Enfold theme options > General Styling > Typography and edit “Default Content Font Size (eg: blog post content) – Selector: body { … }” :)
Regards,
YigitJune 21, 2022 at 1:03 pm in reply to: Get version 4.2 of Enfold to compare for modifications #1356002Hi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)
Enjoy the rest of your day!
Best regards,
YigitHi Jason,
CSS fixes in TEC plugin are related to top filter bar on events page and calendar dropdown button. If you would like to apply it on your installation, please go to Appearance > Editor and replace /enfold/config-events-calendar/event-mod-css-dynamic.php file with this one – https://pastebin.com/ymsTrkKi and then replace /enfold/config-events-calendar/event-mod.css file with this one – https://pastebin.com/wCbitu5v.
After updating the files, please save Enfold theme options and clear cache.Enfold is the only theme we are developing so we will make sure that it adapts to changes made in WP core. Regarding the roadmap, even though we released Enfold 5 recently, Enfold 6 is in sight and it will be the greatest release of Enfold ever. Kriesi said that he has not been this excited since the initial release of Enfold. Though, great things take time so unfortunately there is no ETA or feature reveals yet :)
Best regards,
YigitHi @comkapi,
We have uploaded French language files on our GitHub and they will be available in upcoming version :)
Thanks for your contribution!
Best regards,
YigitHi,
Copyright section was hidden as you chose to use a page as footer and socket. I temporarily chose other options, added [nolink] and saved theme options.
Please review your website :)
Regards,
YigitHi,
You should add the code Mike shared into Functions.php file of your child theme and not Style.css file.
Please add it to the correct file and it should work :)Regards,
YigitHi!
Please go to Enfold theme options > Performance and disable “Responsive Images” to remove srcset from HTML then please refer to Ismael’s post here – https://kriesi.at/support/topic/image-file-sizes-2/#post-1325856.
Regards,
Yigit -
AuthorPosts
