Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry I meant to link to this threadBest regards,
MikeHey frawer,
Try this solution if this doesn’t help then please link to your page so we can examine.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
It looks like the Slider Revolution supports Lottie, see their documentation here.
I don’t have any experience with the Slider Revolution but you could try it or other sliders.Best regards,
MikeHi,
You are correct, in my excitement I didn’t notice this, so it seems your forms and your popup are created with the same snippet from getresponse, and I don’t see a way to either remove the popups on certain pages or only show the form on certain pages, so I would advise to create two campaigns, if this is what getresponse calls them, one for the popups only so that you have a code snippet to use in the function I created and another for your forms that will use a different snippet on all of your pages that you can add to your Head, Footer and Post Injections plugin like before. I realize this may not be what you want, having two lists or campaigns, but I don’t see another option since getresponse is not giving you this option.
Perhaps you could hire someone with better javascript skills on Upwork that can remove the popups on those pages, if so I would like to see the solution because I tried a lot of different ways and I’m out of ideas :)Best regards,
MikeHi,
I checked your page and it looks like it is working to me, I only see one iconlist with the ID Ablaufschritte and on desktop it is big:

and for mobile it is small:

On my Android mobile device it works correctly and when I test on a Windows desktop in Chrome Dev Tools emulating a mobile device the switch occurs after I reload the page, perhaps you are not testing like this? On my Android device it seems like the bottom of your page behaves with a lazy load, if you are using lazy load try disabling it.Anyways I made an example page for you to see how I did this, first I added the custom class Ablaufschritte to the Big Iconlist:

Then on desktop the iconlist shows as it’s default big list:

and on mobile it is switched to a small icon list:

Please check my page on your mobile device and your desktop device.Best regards,
MikeHey MaxBlank,
Thanks for your patience, is this the only page that it occurs on? I looked at some other pages and they seem fine, I see you have a membership plugin form on the page, is this added with shortcode or a code snippet?
Have you tried disabling your plugins to see if there is a conflict?Best regards,
MikeJune 4, 2023 at 3:48 am in reply to: Anführungszeichen werden im Frontend falsch dargestellt #1409512Hey Michelle,
Thanks for your question, I tested the Guillemets in a text block and they work on my test site:
« »

and the ones you posted above in the forum also are working. Perhaps you are using a custom font that doesn’t support them?
Perhaps you have a plugin causing a conflict, try disabling your plugins.
Please give this a try, if you still have problems then please include an admin login in the Private Content area and link to a test page so we can be of more assistance.Best regards,
MikeJune 4, 2023 at 3:38 am in reply to: is it possible to deliver enfold theme content via CDN? #1409510Hey Jacopotj,
Thanks for the screenshot that shows css files, I don’t use cloudfront CDN but I imagine that you can add them to your account somehow, try asking them how you would do it.Best regards,
MikeHey Marc,
It looks like the LayerSlider doesn’t support Lottie files, I tested them as a code snippet but it didn’t work and it gave no errors.
I asked the rest of the team for any ideas but we may need to wait for the LayerSlider to start supporting them.Best regards,
MikeHi,
Thanks for the feedback, I found that the popup only shows a certain number of times, so the last two times after testing a dozen or so times when it stoped showing I thought I had found a solution. This is trickly the div that the popup is in is added as a shadow-root with the css so you can’t just add css to block it, I think they make it tough so ad blockers can’t block it.
The popups are added by the code snippet that was in your Head, Footer and Post Injections plugin so I removed the snippet and added it to this snippet where it says //Put Your Tracking Code Here, this code excludes the snippet from showing on any page in the array by page ID:function exclude_certain_pages_from_getresponse_popup(){ if( ! is_page(array(31420, 11481))) { ?> //Put Your Tracking Code Here <?php } } add_action('wp_head', 'exclude_certain_pages_from_getresponse_popup');I won’t post your full code here, but you can see it in your Code Snippets plugin.
Please clear your browser cache and check.
Best regards,
MikeHey Xiscoj,
Thanks for the link to your page, if I’m looking at the correct special heading it looks like you have added a HTML “b” tag, the main problem is the H1 tag on your site has a font weight of 800 and “b” has a font weight of 700.
The other problem is your custom font doesn’t seem to support either of these font weight because it is eraslightitc, note the word “light” in the font name, try installing the Bold version.
I recommend removing your custom font and use a standard font first to figure out your font weight issue, then replace the “b” tag with the “strong” tag and add this css to change the font weight to 900#top #wrap_all .all_colors h1 strong { font-weight: 900; }Best regards,
MikeHey Xiscoj,
Please link to a test page with your CF7 on it so we can check the elements, and perhaps add a Enfold contact forum under it to show the format you are expecting.Best regards,
MikeJune 3, 2023 at 10:42 pm in reply to: A site I’m building not displaying well in Safari and Firefox. #1409502Hi,
Thank you for the link to your site, I checked with Mac in Safari, Chrome, Firefox and in Windows in Chrome, Firefox, & Edge and all the elements showed for me and the main background video played.
I used Windows 10 & Mac Monterey with Safari v16.4.1 & Firefox v113.0.2
Are you using a Mac or a iPad? Some iPads won’t update to the latest Safari, check your version and also check on a Mac.Best regards,
MikeHi,
To change the big icon list into a small icon list for mobile we need to swap the class av-iconlist-big with av-iconlist-small and change the iconlist title by swaping the class av_iconlist_title with av-iconlist-small and by default the small icon list title doesn’t use a H tag it uses a plain div.
So note that in the following snippet it looks for the ID Ablaufschritte and it removes your h4 tag, so if you change the H tag in the future or your section ID you will need to update the snippet.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function change_iconlist_big_to_small_below_tablet() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ function replaceElementTag(targetSelector, newTagString) { $(targetSelector).each(function(){ var newElem = $(newTagString, {html: $(this).html()}); $.each(this.attributes, function() { newElem.attr(this.name, this.value); }); $(this).replaceWith(newElem); }); } $('#Ablaufschritte').each(function() { var width = $(window).width(); if ((width <= 767)) { $('.avia-icon-list').removeClass('av-iconlist-big').addClass('av-iconlist-small'); $('li').each(function() { $('.av_iconlist_title').removeClass('iconlist_title').addClass('iconlist_title_small'); }); replaceElementTag('h3.av_iconlist_title', '<div></div>'); } else {} }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'change_iconlist_big_to_small_below_tablet');When you test with the Dev Tools on your desktop you will need to refresh the page after emulating a mobile device, this will work correctly on a real mobile device, and if you switch back to a desktop screen you will need to refresh again.
Since a real mobile device won’t switch the screen size in the real world there is no reason to make the code more complicated.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeHi,
Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Your snippet is to make the single product gallery images 250×250, but I don’t see that you have any single product gallery images on your product pages, so I assume that you was hoping this would do something else.

Nonetheless I added it to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) { return array( 'width' => 250, 'height' => 250, 'crop' => 1, ); });Perhaps this article will help you with what you are trying to achieve: How to override WooCommerce Image Sizes
Best regards,
MikeHi,
Typically this error occurs when the full theme zip file is used instead of the installable WP version from your Theme Forest account is used.
Please ensure that you use the installable WP version. Another possible reason this occurs is if your webhost doesn’t have the PHP ZipArchive Extension enabled so WordPress can extract the zip file, please check with your webhost that this is enabled.
I also see that your PHP version is v7.3.33, WordPress require a minimum of v7.4, please ask your webhost to update your PHP.Best regards,
MikeHey Malene,
I checked your site but didn’t see any errors, and I don’t see a LayerSlider on the page, but the line you are refuring to seems to be for the slide count.
Are you seeing this because you have WP Debug enable?Best regards,
MikeHi,
If you are using cPanel try going to Softaculous WordPress Management for creating a staging site:

Otherwise see option #2 in Nikko’s article about using a plugin to create a staging site.Best regards,
MikeJune 2, 2023 at 11:17 pm in reply to: display entries from custom taxonomy alphabetically in blog posts element #1409449Hi,
Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Guenni007 could help, thank you Guenni007, please let us know if this helped.Best regards,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .awpage-document strong, #top .awpage-document label span { color:#fff; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey engage24,
Try following this threadBest regards,
MikeHi,
Glad Guenni007 could help, thank you Guenni007, let us know if you need any further help or if we should close this thread.Best regards,
MikeHi,
Thank you for your patience, first add the custom class black-background-color to your product columns:

Then highlight athe text you want to be white and set the color:

I added this css for you in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field.black-background-color { background-color: #000; }Now one product is done, please try following these steps for the rest of your products:

Best regards,
MikeHi,
Thank you for your patience, first add the custom class black-background-color to your product columns:

Then highlight the text you want to be white and set the color:

I added this css for you in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field.black-background-color { background-color: #000; }Now one product is done, please try following these steps for the rest of your products:

Best regards,
MikeHi,
Thank you for your patience, the following css gives the left sidebar a minimum width of 264px and calculates the body width accordingly until 767px when the sidebar is hidden.
You said you want the three child pages beneath it to also have this behavior so I added parent-pageid-1772 to the css, this should work but if not please link to the three pages so we can check.
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (min-width: 768px) { #top.parent-pageid-1772 #main .sidebar.sidebar_left { min-width: 264px; } #top.parent-pageid-1772 #main .container_wrap.sidebar_left .container .av-content-small.units { width: calc(100% - 264px); } }After applying the css, please clear your browser cache and check.
Best regards,
Mike -
AuthorPosts


