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 11 months 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 11 months 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
Hey sophie,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@media only screen and (max-width: 479px) {
.responsive #top .av-main-nav .av-burger-menu-main {
position: fixed;
top: 2px;
right: 7%;
}}
@media only screen and (min-width: 480px) and (max-width: 570px) {
.responsive #top .av-main-nav .av-burger-menu-main {
position: fixed;
top: 2px;
right: 36%;
}}
@media only screen and (min-width: 571px) and (max-width: 767px) {
.responsive #top .av-main-nav .av-burger-menu-main {
position: fixed;
top: 2px;
right: 30%;
}}
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Ok I’ll try that. And it’s OK to edit the header.php in the child theme?
/*
* Please do not modify this file on your child theme to add scripts to Head section.
* Refer to this post - https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-head-section and use functions.php file instead
*/
should I use this instead in the functions.php?
//-------------------------------
// Custom script in head section
//-------------------------------
function custom_script_name(){
?>
<script>
// Your script here
</script>
<?php
}
add_action('wp_head', 'custom_script_name');
And the issue with the footer missing from the front page on mobil – is that something with wp rocket settings?
Thanks
Nancy
-
This reply was modified 11 months ago by
Munford.
-
This reply was modified 11 months ago by
Munford.
-
This reply was modified 11 months ago by
Munford.
-
This reply was modified 11 months ago by
Munford.
on header.php the original line is:
$preloader = avia_get_option( 'preloader' ) == 'preloader' ? 'av-preloader-active av-preloader-enabled' : 'av-preloader-disabled';
did you removed ( or commented out ) that line – and replaced it ?
try :
if (is_page(array(1147,945))) {
$preloader = 'av-preloader-active av-preloader-enabled';
} else {
$preloader = 'av-preloader-disabled';
}
PS – it is just a different way to write the array – you can use yours aswell.
But: maybe it is better to have that option in enfold activated globaly – to have the oportunity to style it – and then remove that setting on all other pages then your array is set to if not logic.
if (!is_page(array(1147,945) )){
$preloader = 'av-preloader-disabled';
} else {
$preloader = 'av-preloader-active av-preloader-enabled';
}
on an older post there is no working solution for it.
https://kriesi.at/support/topic/change-color-body-style-on-one-page/
If I look at the differences in the DOM, I notice that it essentially depends on the html classes: html_stretched, html_boxed and html_av-framed-box. These classes are set in the header.php according to the settings of the Enfold options. ( html_stretched, html_boxed and html_av-framed-box ) on body they are set without html_ )
There are some filters – but nothing could bring the solution. (see old topic).
A child theme header.php, on the other hand, is quickly created because a file of that name in the child theme root directory is automatically used instead of the parent theme file.
If you only want to use the framed layout for a specific page, it is easier to use the reverse method – set the framed layout setting globally and change it to boxed or stretched for all other pages.
Long story short. Upload to your child-theme route directory a header.php copy and edit it.
search for that line ( around line 26) :
$style = $avia_config['box_class'];
if you set the stretched layout – and want to have for a specifc page a boxed layout –
or you have set the boxed layout and want only one page to be in stretched layout – replace it by:
if (is_page(array(27))) {
$style = 'boxed'; // or 'stretched'
} else {
$style = $avia_config['box_class'];
}
now – as mentioned above it is not easy to get for only some pages a framed layout. So here we go the other way :
Set on Enfold options page a framed layout as global setting – and change the layout to all others that are not that page:
if (!is_page(array(27))) {
$style = 'stretched';
} else {
$style = $avia_config['box_class'];
}
now every page now is stretched except the page 27
see here example page : https://clean.webers-testseite.de/impressum/ this page is framed – all others are stretched.
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
Hey mosaic,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@media only screen and (max-width: 767px) {
.responsive .single-product-main-image {
margin: 0;
}
.woo-variation-product-gallery {
width: 100%;
margin-bottom: 0;
}
}
see the screenshot below for the expected results.
Best regards,
Mike
Hey So Evolve,
You could use the shortcode wand in the classic editor to create your button:

then copy the code to your widget area HTML widget.
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,
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:

and ensure that it is activated, then add the above code and save.
Best regards,
Mike
Hi,
I see now your shop page is working, this looks like a conflict between a plugin and the theme.
You could enable each plugin one at a time to find the one that is a conflict, and stop using it.
Unfortunately we are limited to offering support for plugins.
Please note that using the contact form is not appropriate for support questions, please log in to the support forum and open a new thread if you need further assistance.
If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.
Best regards,
Mike