Hello,
i want te make something like the picure in the link. I have tried te use the custom svg divider en other options in enfold en searched over the internet for a solution but haven’t found anything. I want half an background color under a layout element. See for my idea:
https://brugmedia.nl/wp-content/uploads/2025/04/Screen.png
Is something like this possible in enfold?
Hi! I have installed last update of Enfold.
My web is aytoconsuegra.es and here is the normal view of article list in Homepage (left my web, right other web with same template):

Now here is my web aytoconsuegra.es mobile view of article list in Homepage (left my web, right other web with same template):

I would like to keep the same format as the website on the right.
Thanks.
@Ismael Yes, but I don’t have the time for creating staging environments for this unfortunately, but you’re welcome to on your side. I said you can test on the live site, but made an assumption that people would test quickly and briefly.
We’ve already provided cpanel access so you can edit files from the File Manager or use the same credentials for FTP if needed.
As mentioned, we are the hosting provider too. All our sites are on PHP-FPM so we’re not going to change this. We have other sites running Enfold without a problem, so I doubt PHP-FPM (or the redis and memcached extensions) is the problem here.
In a few hours, we’ll need to implement a workaround and change the Enfold contact form to a different one… so please create a staging site or do whatever last tests you would like to.
Thank you for your assistance everyone!
Hi,
We are not able to reproduce the issue again. Temporarily, we have disabled the Enfold > Performance > File Compression settings. Please install a cache plugin such as WP Rocket or WP Super Cache to improve site performance.
Best regards,
Ismael
Hey Daniel,
Thank you for the inquiry.
That’s not possible by default and would require significant modifications. You may need to look for a plugin or modify the sort_buttons function in the enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php file. For additional assistance, you can also contact Codeable.
— https://kriesi.at/contact/customization
Best regards,
Ismael
Hey simog72,
Thank you for the inquiry.
This option is not available by default, but you can modify the sort_buttons function in enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php.
Please note that this type of modification is beyond the scope of our support. For additional assistance, you may consider hiring a freelance developer or contact Codeable.
— https://kriesi.at/contact/customization
Best regards,
Ismael
I have taken over an old site and it’s last version is Enfold: 4.7.6.3. Is it even possible to update to 7.1? If not are there older versions that I can upload and work my way to 7.1?
Hi,
Glad we were able to help, 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,
Mike
Hi,
Glad we were able to help, 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,
Mike
Hi @enfold!
Using your wonderful Hello-Theme I wonder how I can Change the subtitels in the Menue-Bar
Thanks for your Feedback.
Michael F Kraus
The shortcode button hyperlink does not work. The buttons look nice but do not load the referenced URL.
The shortcode (with URL placeholder text) is:
[av_button label='ALL ISSUES' link='manually,http://' link_target='https://theURL' size='medium' position='left' icon_select='no' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-5obiu2i']
I’ve tried these steps too, but still no success:
– Disable “merging and compression” for CSS and JS files from Enfold > Performance.
– If a caching plugin is installed check the plugin settings and clear the cache..
– Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.
This reply has been marked as private.
Wonderful! Thank you, this is very helpful! Items 1 and 4 are solved—the backgrounds work perfectly with a tweak to the image file and adding a norepeat..
Items 2 and 3 remain issues.
2. The categories don”t have a strong intro. I need to add an H2 text category title at the top.
–> The Header Title should not display on all pages. Changing Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs ▸ Display only title, displays the title on all pages, which is not wanted. I need the Category title to display on the category page, and the styling needs to match the titles on the other pages (e.g., H2, no line above and below, not positioned so high up).
3. I need to add an optional category title image. individual categories would have either a unique title image or no title image.
Hi,
Great, I’m glad that Mike could help you out. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
SCHMUTZ FalcoGuest
Hi,
We’ve encountered a PHP Fatal Error in the Enfold theme, causing our WordPress installation to crash intermittently. The issue originates from an unsupported operation (string + int) in the postslider.php file:
File Path:
/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php
Line 1447:
$params[‘offset’] = $params[‘offset’] + ( ( $this->current_page – 1 ) * $params[‘items’] );
Suggested fix:
Explicitly cast parameters to integers to avoid type errors:
$params[‘offset’] = (int)$params[‘offset’] + ((int)($this->current_page – 1) * (int)$params[‘items’]);
Please consider including this adjustment in your next update to ensure greater stability across varying page configurations.
Thanks
Hi Enfold Team and community,
I’m using the Masonry element with taxonomy filters via the Avia Layout Builder, and I’ve noticed that the “ALL” label (which appears to show all items) cannot currently be customized or translated from the backend interface.
This becomes problematic on multilingual sites or when specific UI wording is needed (e.g., replacing “ALL” with “Everything”, “Tous les articles”, “Overview”, etc.).
I’ve submitted a feature request on GitHub to suggest making this label customizable: 🔗 GitHub Feature Request: https://github.com/KriesiMedia/Enfold-Feature-Requests/issues/132
Feel free to support the idea there if you think it would improve flexibility and localization for your projects too!
Thanks again to the Enfold team for the great work!
Best regards,
Arsène
Hi,
I registered a custom image size adding following code to functions.php:
function add_custom_image_size() {
add_image_size( 'medium_squared', 600, 600, true ); // true = crop esatto
}
add_action( 'init', 'add_custom_image_size' );
function add_custom_image_sizes_to_editor( $sizes ) {
return array_merge( $sizes, array(
'medium_squared' => __( 'Medium squared' ),
) );
}
add_filter( 'image_size_names_choose', 'add_custom_image_sizes_to_editor' );
Now I can see and use my new image size in Wp:
View post on imgur.com
But i can’t see it in Enfold ALB elemnts dropdowns:
View post on imgur.com
Any help?
Thank you
Thanks Ismael – that worked – except for av-framed-box
maybe the other way round
Edit: that worked – setting to framed layout on enfold options (General Layout) – and change for all otheres to stretched ( or boxed ) layout.
add_action( 'template_redirect', function() {
global $avia_config;
if ( is_admin() ) {
return;
}
if ( !is_page(2466) ) {
$avia_config['box_class'] = 'stretched';
}
});
many thanks again – that is as usual via child-theme functions.php the best solution.
See page 2466 : https://webers-testseite.de/impressum/
-
This reply was modified 9 months, 1 week ago by
Guenni007.
Hi,
Thank you for your reply.
It works, thank you! However, the layout of the layout blocks is now shifted to the right, off the screen, they are displayed above the right banner which allows the publication among other things, of the page. Attached is a screenshot to help you better understand the problem.
Regarding the Draw Attention plugin, is there a way to make it work with Enfold?
-
This reply was modified 9 months, 1 week ago by
sitadi.
Hi,
We disabled the Classic Editor and the Draw Attention plugin. You don’t need the Classic Editor because this setting can already be configured in Enfold > Theme Options > Select Your Editor. The second plugin generates a script error, so we temporarily disabled it.
We created a new Commune post and switched to the Advanced Layout Builder. Please check the private field.
Also, make sure that the query parameter &classic-editor=1 is not included in the URL. Try accessing the Commune posts directly from the dashboard instead of using the link above.
View post on imgur.com
Best regards,
Ismael
Hi,
Thank you for the update.
We temporarily disabled the Enfold > Performance > File Compression settings and adjusted the font size of the paragraph (p) tag to 16px. It updated correctly as shown in the screenshot below.
View post on imgur.com
Best regards,
Ismael
Hi,
Ok, thanks for using Enfold.
To get a refund, please go to: Can I Get A Refund? in your Envato account.
We here in support are not connected to your account in Envato (theme forest) So you need to follow their steps.
Best regards,
Mike
Hi,
Do you have this issue when Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression is disabled?
Best regards,
Mike
My Google Recaptcha V3 and V2 is shown as working in the Enfold settings but when I try to send an email from my contact form I get the error “Invalid form for recaptcha sent”. This error goes away if I turn of file compression in the Enfold settings but I want to keep file compression on. Is this an error?
Hi,
Unfortunately not, and I don’t suggest adding the header.php or footer.php to a child theme without updating them after each update, this is the top reason for errors after updates.
Perhaps a request for this feature to the Dev Team: Github Feature Request would be best.
Best regards,
Mike
https://www.dropbox.com/scl/fi/v5kywnch6xguy4k5k9z6n/themeforest-RHGvrrJ1-enfold-responsive-multipurpose-theme-wordpress-theme.zip?rlkey=umui71ykq4nriqsss6ze7a06o&st=o5aflny6&dl=0
It takes a little time before the error is thrown so it is unpacking the folder.
You set this up to be the same size as the MAX file limit?
Anyway – I only have a few hours left to get this done today. If you can see the problem before I can find a new theme – great. But other wise anything more is a waste of time. Return the purchase.
well – as far as i can see – this solution given to you is based too on changing things in header.php:
https://kriesi.at/support/topic/preloader-on-2-pages-loading-issues/#post-1480524
my recommendation is only to use not the parent header.php but a copy of header.php inside your child-theme root directory.
by this – an update will not overwrite the changings.
However, since header.php is one of those files that is often affected by changes to the Enfold site, you need to keep track of whether you need to repeat this procedure with a new copy.
If you have received a functions.php child theme solution from Enfold, it would be nice if you would post it.
you can see here a working example page of my impressum page on a test installation:
https://clean.webers-testseite.de/impressum/
All other pages do not have a preloader.
I noticed that my client’s site is not showing the slider and gallery images. I updated Enfold to 7.0, and I’m still not seeing them populate.
Any ideas?
Thanks
B
Hi,
Thanks for your patience for the category background image with “Dandelion-post-background2.png” you can use this css:
.category .container_wrap_first {
background: url(https://templeinacistg.wpenginepowered.com/wp-content/uploads/2025/03/Dandelion-post-background2.png) !important;
background-size: contain !important;
background-color: #f2f0eb !important;
}

but this image has a white background so adding a background color to the page will not show, if the image had a transparent background the background color would show.
To show the title you need to enable Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs ▸ Display only title, I did this for you:

To add the same background image and color to the post you could use this css:
.single .container_wrap_first {
background: url(https://templeinacistg.wpenginepowered.com/wp-content/uploads/2025/03/Dandelion-post-background2.png) !important;
background-size: contain !important;
background-color: #f2f0eb !important;
}
but you still need to use a tranpernt background image for the color to show.
Best regards,
Mike
Hi,
Glad we were able to help, 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,
Mike