Hey oestersund,
Thank you for the update.
You’re right, the issue is that the previous css uses display: none !important; without scoping it to a specific page, so it ends up hiding #layer_slider_2 on all pages, not just the homepage.
The fix is to wrap those rules in a page-specific selector. The easiest way to do this is to use the unique body class that WordPress adds for each page. For example, if your homepage has the slug “home”, the body class would be something like page-id-123 or home. You can check the exact class by inspecting the body tag in your browser’s dev tools.
Once you have the body class for your homepage, update the css like this:
/*Homepage Slider Laptop Mobile*/
@media only screen and (min-width: 768px) {
.page-id-123 #layer_slider_1 { display: block !important; }
.page-id-123 #layer_slider_2 { display: none !important; }
}
@media only screen and (max-width: 767px) {
.page-id-123 #layer_slider_2 { display: block !important; }
.page-id-123 #layer_slider_1 { display: none !important; }
}
Replace .page-id-123 with the actual page ID class from your homepage body tag. This way the hide/show rules only apply on the homepage and all other pages with layer sliders will display normally on mobile again. This documentation should help.
— https://kriesi.at/documentation/enfold/add-custom-css/#how-to-inspect-an-element-on-the-page
Please make sure to purge the cache before testing. Let us know if the issue persists.
Best regards,
Ismael
Hey Munford,
Thank you for the inquiry.
The “Make fewer HTTP requests” and “Add Expires headers” recommendations from speed testing tools are server-level optimizations and are not something we can control directly from the theme side. These are handled by your hosting server configuration.
For the Expires headers issue, this typically requires adding rules to your .htaccess file or asking your host to enable browser caching on the server. Here is an example of what you can add to your .htaccess file:
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
</IfModule>
For reducing HTTP requests, the “Merge and compress files” option you already have enabled in Enfold > Performance is the main thing the theme can do on its end. Beyond that, reducing the number of active plugins and removing any unnecessary scripts loaded by third-party plugins will help.
We also recommend using a caching plugin like W3 Total Cache or WP Rocket, as these can handle both browser caching and HTTP request reduction more comprehensively. For more details, please refer to the W3 Total Cache documentation.
— https://wordpress.org/plugins/w3-total-cache/
Let us know if you have more questions.
Best regards,
Ismael
Hey Erwin,
Thank you for the inquiry.
Yes, it is possible to add inline html to the post excerpt. You can go to Posts > All Posts, edit the post you want to modify, and add your custom html directly in the excerpt field. For example, you can wrap certain words in a span tag with a custom class, like this:
This is the <span class="av-highlight">highlighted word</span> in the excerpt.
Then you can style that class using custom css in Enfold > General Styling > Quick CSS or via Appearance > Customize > Additional CSS:
.av-highlight {
color: orange;
}
Just keep in mind that the excerpt field in WordPress does not show a visual editor by default, so you would need to type the html directly in the plain text field. Also, some themes or plugins may strip html tags from the excerpt, but Enfold generally allows basic inline html tags like span to pass through.
Let us know if you have more questions.
Best regards,
Ismael
Hey Erwin,
Thank you for the inquiry.
You can disable the hover/focus effect on the masonry gallery images by adding the following css to Enfold > General Styling > Quick CSS:
#top .av-masonry-item .av-masonry-image-container:before,
#top .av-masonry-item .av-masonry-image-container:after {
display: none !important;
}
#top .av-masonry-item:hover .av-masonry-image-container img {
opacity: 1 !important;
filter: none !important;
transform: none !important;
}
If you only want to target a specific masonry gallery on the page and leave the others unaffected, you can wrap it in a section or cell with a Custom CSS Class and then use that class as the parent selector in the code above.
— https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Let us know if the issue persists.
Best regards,
Ismael
Hey cktanju,
Thank you for the update.
To set the sticky header background to black on mobile, you can add the following to the Quick CSS field in Enfold > General Styling > Quick CSS:
@media only screen and (max-width: 767px) {
.html_header_sticky #header .header_bg {
background-color: #000;
}
}
If the header is using transparency before scrolling, you may also need to target the scrolled state specifically:
@media only screen and (max-width: 767px) {
#header .header_bg {
background-color: #000;
}
}
Please make sure to purge the cache before testing. Let us know if the issue persists.
Best regards,
Ismael
Jon MorbyGuest
Hi
The guy who originally designed our client’s site has vanished, and it doesn’t look like he ever actually registered Enfold … certainly the auto updates aren’t configured.
Is there any way we can get access to the updates as their site is still running Enfold 4.1.2
The website in question is http://www.crescentsigns.co.uk
Hi,
Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
Hi,
Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
Hi,
Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
Hey Daniel,
Please see this thread: https://kriesi.at/support/topic/cve-2022-48285-on-jszip-3-6-0/#post-1470007
If you wish, you can request the Dev Team to consider this again on our Feature Request: https://github.com/KriesiMedia/Enfold-Feature-Requests/issues
Note that at the time the updated version was buggy and did not work as it should, perhaps there is a newer update at this time? The Dev Team would need to review though the Feature Request link above.
See https://kriesi.at/support/topic/cve-2022-48285-on-jszip-3-6-0/#post-1469608
Best regards,
Mike
Hi,
Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
Hi,
Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
Hey ivancazzol,
Please note that the Grid element gets it’s height from the elements inside of it, so on mobile, when the top grid row is stacked the right side cell that only has a background image, that shows below the first cell, will have no height. In our demo it has has another image element in it the “Parallax” text

To correct yours, add a Whitespace (hr) element with a min-height that you want it to be, perhaps 200px or so.
Best regards,
Mike
Hello,
I am experiencing an issue with my website http://www.aliko.it. The issue is that when accessing the site from a mobile device, the website seems to load a different page as the homepage rather than displaying the same homepage with responsive adjustments. The desktop version shows the correct layout, while the mobile version appears to load another layout.
The website is built with the Enfold theme, and I am using the Advanced Layout Builder. I would like the layout to remain consistent across devices, with only the standard responsive adjustments. Could you please help me understand what might be causing this issue and how to fix it?
If needed, I can provide screenshots or access to the backend.
Thank you in advance for your support.
Best regards,
Ivan Cazzol
Hi,
Glad to hear that you have this sorted out, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
Hi,
Version 7.15.1 is the correct version in Enfold 7.1.4, version 8.2.0 came available on Mar 2, 2026, after our last update.
The bundled version of LayerSlider can only be updated with theme updates, which we do depending on our own release cycle and depending on critical updates, and what the LayerSlider team shares with us, as it is a special “bundled version”. Users cant update the bundled version of the layerslider, even if actived.
However, if a user wishes to update before the next theme update, they can simply purchase a full version of the layerslider and upload it as a plugin and activate it.
See our documentation here: How LayerSlider Updates work in Enfold
Best regards,
Mike
Hi,
Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
I’m not sure whether the update to version 8.x is included in the package included with Enfold. The dev team would have to comment on that. I would find it a shame if that were not the case. Because that is also an important part of the theme.
Hi Enfold team,
We’re running into an issue updating LayerSlider.
• Current installed version: 7.15.1
• Available version shown: 8.2.0
When attempting to update, the plugin does not update at all. We’re encountering the issue shown in the screenshots below.



We first tried updating on our dev site (where we normally handle plugin updates), but the update still doesn’t go through. We also tested on the live site just to confirm, and the same issue occurs there.
While looking through previous support threads, we found similar reports where the suggested fix was to update Enfold to the latest version. However, we are already running the latest version of Enfold, so that doesn’t seem to resolve it in our case.
Do you have any idea what might be causing this or how we could fix it?
Thanks in advance!
Roberta
-
This topic was modified 5 days, 22 hours ago by
Roberta.
Hi,
Thank you for the update.
Please try editing the enfold/config-templatebuilder/avia-template-builder/php/class-save-buildertemplate.php file. Remove everything in the file, then replace it with the following code.
— https://pastebin.com/SUBcKrzs
IMPORTANT: Please make sure to create a site backup or restore point before applying the fix. Keep the admin_enqueue_scripts as is.
Let us know how it goes.
Best regards,
Ismael
Hey Pam Miller,
Thank you for the inquiry.
The server should have PHP version 8.0 or later to be compatible with the latest version of the theme, 7.1.4. You can download the latest version of the theme from your Themeforest account. After retrieving the latest version, you may need to manually install or upload it to your server via S/FTP. Please check the link below for more info.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
Ismael
Hi,
Thank you for the inquiry.
You may need to ask your hosting provider to increase the cURL timeout duration. If the issue persists after increasing the timeout duration, try to manually import the demo using the XML files. Please check the documentation below for more info.
— https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo
Let us know the result.
Best regards,
Ismael
Hey Behnam,
Thank you for the inquiry.
You may need to manually install or import the Lawyer demo using the XML files. Please check the documentation below for more info.
— https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo
Best regards,
Ismael
Not able to download this theme.
Hello,
I am also experiencing a problem importing and installing the Agency – Enfold Parallax Demo. When I click on “Import Demo” and then select “Agency – Enfold Parallax Demo”, I receive the following error message: “cURL error 28: Connection timeout after 10001 ms.”
Could you please help me understand how to resolve this issue?
Thank you in advance.
Pam MillerGuest
I have Enfold on a site that was designed a long time ago. I am not sure what account it was purchased under but now stuck with PHP 7.4 until it is upgraded. Do we need to buy a new version or is there an upgrade version.
Hi,
Glad that Yigit could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
Hi,
To update this thread. I sent an email to copytrack with the license file that was given to me by Yigit and my themeforest licensefile of the Enfold theme and they just replied back that they have closed the case.
Thank you all very much for your help. I really appreciate it.
@guenni: danke – keine em im Code-Modus, keine PHP scripte in der functions
@team Enfold: Do you have an idea?
thx and best regards Tilman
-
This reply was modified 6 days, 13 hours ago by
oestersund.
-
This reply was modified 6 days, 13 hours ago by
oestersund.
Hi Rikard,
Thanks, it works :-)
But do we have to insert this code snippet into each of our more than 250 WordPress websites with enfold…? Or is this planned for the next enfold update?
Regards,
Bernd