Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry, I checked again and it seems my browser had switch the languages. I reviewed the steps to translate the layersliders and disable the “Use slider markup caching” option to display the translated texts.
I keep getting a message that the translation is working on the homepage and to not change anything, are you also getting this?Best regards,
MikeHi,
Glad to hear this is sorted out, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Sorry for the late reply, this is typically added to the nginx.conf file inside the server context, this is not always available to end users, please try asking your webhost for help with adding this.Best regards,
MikeHi,
Sorry for the late reply, and thanks for the login, it looks like your layerslider transactions are off a little, for example it looks like both languages are using the same text. Please see the screenshot in Private Content area.Best regards,
MikeHey André,
Sorry for the late reply, this sounds like a good idea, unfortunately there is not an event triggered, but typically the ID exists “fullscreen_slider_1” unless the user inputs something else.
You should be able to find the image with this selector:
#fullscreen_slider_1 > div > ul > li.slide-1.active-slideBest regards,
MikeHey idaandersenlang,
Sorry for the late reply and thanks for the link, I tested your sign up form and it worked for me, I also got your response. How was it not working?Best regards,
MikeHi,
Sorry for the late reply and glad to hear you have sorted it out, I took a look at your page and it looks good so I will go ahead and close this.
Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeAugust 3, 2020 at 12:51 am in reply to: If "Default enfold product gallery" set, variation images not switching #1234689Hi,
Sorry for the late reply, I believe the code Ismael shared is to remove the zoom from the product image on a single product page.
I checked the link above to your sample page and the product image is not zooming for me.
Is it still zooming for you?
Your items under “Érdekelhetnek még” still zoom, to correct that please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.thumbnail_container:hover { transform: scale(1) !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Sorry for the late reply, I took a look at both of your sites mobile menu and they both seem to work now, do you need any further help on this topic?Best regards,
MikeHi,
Sorry for the late reply, I tested your code and it didn’t work for me, then I copied what seems like the same code from the documentation and it is working for me?add_action( 'after_setup_theme', 'enfold_customization_product_switch' ); function enfold_customization_product_switch(){ add_filter('avf_builder_elements', 'avf_builder_elements_mod'); } function avf_builder_elements_mod($elements) { $counter = 0; foreach($elements as $element) { if($element['id'] == 'header_transparency') { $elements[$counter]['std'] = 'header_transparent'; } $counter++; } return $elements; }Please give this a try.
Best regards,
MikeHi,
Sorry for the late reply and thanks for the link and screenshot. I see that your main menu titles are shorter than the sidebar menu.
Have you tried disabling your Autoptimize plugin and clearing any server cache? I believe your sidebar menu is auto created so it should update.
Please include an admin login in the Private Content area so we can investigate.Best regards,
MikeHi,
Glad Ismael could help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeAugust 2, 2020 at 11:38 pm in reply to: Pb Editeur de formulaire plugin Thrive Leads et Enfold #1234681Hi,
Thrive Leads replied to my request:Thanks for reaching out to us.
We have users that are using the same theme with our Thrive tools. That
said, we still cannot guarantee that it will work 100% with other plugins &
themes…
Currently, we do not have a test version.So unless we can test with your site, I don’t see anything else we can do.
Best regards,
MikeHi,
Sorry for the late reply, do you mean that this css is causing your text and images to not show on the page in the Private Content area?#email { border: 1px solid #e2e2e2 !important; }I took a look at your page and tested the css but found the text and images loading well. Has this been resolved?
Best regards,
MikeHey Mike,
Entschuldigung für die späte Antwort, es ist möglich, eine Seitenleiste klebrig zu machen. Sticky Menu, Sticky Header (or anything!) on Scroll zu verwenden
Eine andere Möglichkeit besteht darin, dieses benutzerdefinierte Skript für Seiten wie Ihr Beispiel auszuprobieren. Fügen Sie diesen Code am Ende Ihrer Datei functions.php unter Darstellung> Editor hinzu:function custom_sticky_script(){ ?> <script> (function ($) { $(window).scroll(function (e) { var $sticky = $('#top.single-post .inner_sidebar.extralight-border'); var width = $(window).width() var position = ($sticky.css('position') == 'fixed'); if ($(this).scrollTop() > 30 && width >= 767 && !position) { $sticky.css({ 'position': 'fixed', 'top': '230px', 'width': $sticky.innerWidth() }); $sticky.next().css('float', 'right'); } if ($(this).scrollTop() < 30 && position) { $sticky.css({ 'position': 'static', 'top': '0px', 'width': '' }); $sticky.next().css('float', 'left'); } }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_sticky_script');Leeren Sie dann Ihren Browser-Cache und überprüfen Sie.
Die meisten Beiträge, bei denen ich dies getestet habe, haben gut funktioniert, aber bei einigen Ihrer Beiträge befindet sich die Seitenleiste an einer anderen Stelle, die korrigiert werden sollte.— Translated with Google —
Sorry for the late reply, it is possible to make a sidebar sticky, one way is to use a plugin like Sticky Menu, Sticky Header (or anything!) on Scroll
Another way is to try this custom script for pages like your example. Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_sticky_script(){ ?> <script> (function ($) { $(window).scroll(function (e) { var $sticky = $('#top.single-post .inner_sidebar.extralight-border'); var width = $(window).width() var position = ($sticky.css('position') == 'fixed'); if ($(this).scrollTop() > 30 && width >= 767 && !position) { $sticky.css({ 'position': 'fixed', 'top': '230px', 'width': $sticky.innerWidth() }); $sticky.next().css('float', 'right'); } if ($(this).scrollTop() < 30 && position) { $sticky.css({ 'position': 'static', 'top': '0px', 'width': '' }); $sticky.next().css('float', 'left'); } }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_sticky_script');Then clear your browser cache and check.
Most of the posts I tested this worked well on, but some of your posts have the sidebar in a different location which should be corrected.Best regards,
MikeHi,
Sorry for the late reply, try this function instead:function woo_rename_tabs( $tabs ) { if(wp_is_mobile()) { $tabs['additional_information']['title'] = __( 'Infos' ); // Rename the additional information tab return $tabs; } else{ return $tabs; } } add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );Then clear your browser cache and check.
Best regards,
MikeHey mike.rav,
Sorry for the late reply, and thanks for the screenshot, to add mega menu columns and images please see our documentation here.Best regards,
MikeHi,
Sorry for the late reply, on the page in the Private Content area do you want the “JUBILEUMSBOKA” background color to be fixed and the text and image scroll over the top, or do you want the color, text, & image of that section to be fixed with parallax scrolling?Best regards,
MikeHey dondela,
Sorry for the late reply, I took a look at your page when printing and I see that your custom “printfriendly.css” in your child theme contains:.avia-section {display: none;}which is hiding the 8 color sections on your page from printing.
Please try removing this css or adjust to only hide the sections you wish.Best regards,
MikeHi,
Sorry for the late reply and for the confusion. To renew support please follow this guide.
The email you received is automatically sent by Envato when you are getting close to renew, the link may have worked correctly if you were logged into your Envato account at the time, my guess. Anyways the link above shows you how to renew with screenshots.Best regards,
MikeHey Dino0103,
Sorry for the late reply and thanks for the links. Please include an admin login in the Private Content area so we can investigate.
This sounds like your css is not updating correctly when you make the change, or your server is also caching the older css, we will know more once we can look at the backend.Best regards,
MikeHey DanielKG,
Sorry for the late reply and thanks for the links and images, I only have an Android to test with and the option reacts more like a popup than what you are seeing. Nonetheless I believe this is due to your viewport not having an maximum value. Currently I see your viewport is:
<meta name="viewport" content="width=device-width, initial-scale=1">I believe we should try this:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
I was not able to login to your site, so please try editing your theme’s header.php on line 65, look for:if( strpos($responsive, 'responsive') !== false ) { echo '<meta name="viewport" content="width=device-width, initial-scale=1">'; }and change to:
if( strpos($responsive, 'responsive') !== false ) { echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">'; }Then clear your browser cache and check.
Best regards,
MikeAugust 2, 2020 at 7:34 pm in reply to: Modify "Proceed with PayPal" button text on WooCommerce #1234665Hi,
Sorry for the late reply, is this the button you are trying to change?

Thanks to @Guenni007 for the function, I modified it a little to find the button text “Payer avec PayPal” and it seems to work now.function my_text_strings( $translated_text, $text, $domain ){ switch ( $translated_text ){ case 'Payer avec PayPal': $translated_text = __( 'Payerthgy', $domain ); break; } return $translated_text; } add_filter('gettext', 'my_text_strings', 20, 3);
Please clear your browser cache and check.Best regards,
MikeHi,
Sorry for the late reply, I’m not quite sure what is happening, can you record your screen making the change that causes the error and include an admin login in the Private Content area so we can replicate and investigate.Best regards,
MikeHey hatchedconcepts,
Sorry for the late reply and thank for the login, I see that your Post categories are using the same slugs as your Page categories, this can led to unexpected results. If you click on the category “home” count in Pages it shows the 3 pages

but if you do the same for Post categories it leads to no posts found.Best regards,
MikeHi,
Sorry for the late reply, in the link above the context for “then reactivate your settings” is that you have“Disable adding unique timestamps” in “Unique timestamp of merged files” to suppress adding the timestamp.
and after waiting sometime you can “then reactivate your settings” meaning that you can enable adding unique timestamps.
In your case you were following the steps to clear your file merging and would enable file merging again once your server cache is cleared, typically this can take “sometime”.
I recommend not using any file merging, cache, minifying, server caching, & etc until your site is completely done because it can mask or create issues while creating your site.
I hope I explained this well.Best regards,
MikeHi,
Sorry for the late reply, have you tried this suggestion to add your custom mane to the out going message?
Our contact form is basic and doesn’t include functions such as more advanced contact forms like Contact 7. Have you tried this plugin?Best regards,
MikeHi,
Sorry for the late reply, I believe you are looking for this snippet. Please let us know if this helps.Best regards,
MikeHey Christin,
Sorry for the late reply, the first link above to the Shop Demo is the default product page, the other two were created with the Advanced Layout Builder using the woocommerce elements in the “Plugin Additions” tab.

Please note that the Advanced Layout Builder for products will not work with all WooCommerce Extensions.
As for importing products via CSV for custom product pages, I tried researching this “issue” but only found one thread about this and it was about using the plugin WP All Import.
You can import your products via a woocommerce CSV file by going to WordPress > Tools > Import > WooCommerce products (CSV)

For example, the woocommerce plugin includes a sample CSV import file at:\wp-content\plugins\woocommerce\sample-data\
After the products are imported successfully and if you wish to change them to “custom product pages” with the Advanced Layout Builder, simply open the Advanced Layout Builder and edit to suit.
Since the sample products were created with the Classic Editor and then exported, they will be imported the same.As for editing PHP files to create your “certain screen design”, while you can create many layouts with the Advanced Layout Builder, sometimes this is not enough to match the desired design, in this case you may need to edit the files in \enfold\config-woocommerce\. In these cases I would recommend hiring a freelancer to make the changes for you as it is not an easy task.
Best regards,
Mike -
AuthorPosts
