you do not have a child-theme in use?
for the custom class there is an extra input field on the advanced tab – developer settings : custom css class
But insert it without a dot in front
if not – try to place it at the end of the parent functions.php just before:
// here is a good place for it
require_once( 'functions-enfold.php' );
there is an extra comment on that :
/*
* register custom functions that are not related to the framework but necessary for the theme to run
*/
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
Hallo,
nach einem Absturz von WP musste ich das beschädigte Enfold-Theme löschen und neu installieren (inkl. Child-Theme).
Nun möchte ich die alte Konfiguration, von der ich ein Backup habe, hochladen.
Welche Datei muss hochgeladen werden?
Schöne Grüße
Wilhelm
Hi,
I am uting your demo theme parallax (I like it!)
However on mobile screen, the distances between the first 3 text blocks and the distance between the 3rd block and the rotating text are too long
I tried to change paddings at different places for mobile but it does not seem to improve.
What is the best way to achieve less paddings on mobile screens?

Hey Adam,
Unfortunately, there is no HTML version of Enfold and Enfold’s elements.
As a workaround, you can create a page as your template and then get the HTML from the source code.
Let us know if you have any other questions and enjoy the rest of your day!
Best regards,
Yigit
Or – if you like to have that “gradient” generated from background-color of the section to black :
https://enfold.webers-webdesign.de/test5/
Hi Sean,
Our devs have revised the solution and an improved one will be included in the upcoming version.
If you would like to use the improved version, please go to /enfold/config-templatebuilder/avia-template-builder/php/ and replace the content of the class-asset-manager.php file with: https://pastebin.com/rRdA8cm0
Best regards,
Yigit
Hi Support,
I have a fresh local install of WordPress which I have added the latest version of Enfold as well as WooCommerce. As soon as I enable WooCommerce I get the following error:
Fatal error: Uncaught Error: Attempt to assign property “extra” on null in ../config-templatebuilder/avia-template-builder/php/class-asset-manager.php:1175
I am not sure why I am seeing this error as I saw on one of your posts that you have fixed this issue: https://kriesi.at/support/topic/enfold-upcoming-fixes/
Your help would be greatly appreciated.
Thanks
Sean
Hello
I have an error curl 28 when I try to import the demo spa of Enfold.
Can you explain me where to find the file “SPA”, not importing it but having it to put it on my website.
I can also give you my ftp connection and you can fixe that for me.
I’m trying for 1 month, I tried what your pu t in a documentation, and it’s not working :
—————————————————-
How to manually import a theme demo
Please add following line to Functions.php file in Appearance > Editor
add_theme_support( ‘avia_demo_store_downloaded_files’ );
Download the zip file of the demo you would like to import from https://github.com/KriesiMedia/enfold-library/tree/master/demos
Extract it in \uploads\avia_demo_files\ folder. If you are importing Enfold 2017 demo, files should be extracted inside \enfold-2017\ so it should look as \uploads\avia_demo_files\enfold-2017\
Go to Enfold theme options > Demo Import and import the demo
It’s for a client, it’s URGENT please.
Thank you for your answer. My email address : (Email address hidden if logged out)
Regards,
Magali
Hello everyone,
I have a personal website designed with Enfold I recently updated. Unfortunately, I’m having a problem: I can’t enable the cookie consent messages bar.
I repeatedly consulted documentation to try to activate Modal Popup Window, but the thing is that the label to enable it appears to be inactive. I didn’t manage to unlock it to enable the bar to show on the website (I post here the link to a screenshot, see the red circle).
Note that I recently updated my website (updated WordPress to latest version, 6.1.1., updated Enfold theme to version 5.4). The cookie banner showed up in the previous version of my website without problem, I just can’t find what is stopping it from doing it now.
Can anyone help me please? I need to make my website gdpr compliant again.
Hey Ismael,
As always, you have a creative solution for everything! Works like a charm.
Thanks for the quick and thorough reply, I appreciate it,I hope that other find this quick tip here in the Enfold community.
Thank you for your support
Cheers
Darko
Hello, there are certain themes in Enfold that always appear with this code error in the header.
Could you please fix it?
Hello,
I have a problem with an Enfold theme installation. I have the error Failed to initialize plugin: avia_builder_button on every post/page I try to edit. Furthermore, on theme options -: general styling I can not choose a color scheme (they are all greyed out).
The error in console is refering to tynymce
(Failed to initialize plugin: avia_builder_button TypeError: Cannot read properties of undefined (reading ‘openInstance’)
at t.<computed>.t.<computed>.createMenuValues (avia-tinymce-buttons-4.js?wp-mce-49110-20201110:40:32)
at t.<computed>.t.<computed>.init (avia-tinymce-buttons-4.js?wp-mce-49110-20201110:25:26)…..)
I tried disabling all the plugins, reenabling. Install reinstall wp and theme and many many other and same result. Can you help me with that?
if it is always the same gradient you like to insert – then you can add it via jQuery script
f.e.: a color-section with custom class: add-gradient
function add_gradient_to_section_bg_image() {
?>
<script type="text/javascript">
window.addEventListener("DOMContentLoaded", function () {
(function($){
$('.avia-section.add-gradient').each(function() {
var bgImg = $(this).css('background-image');
var bgPos = $(this).css('background-position');
if($(this).hasClass('av-parallax-section')){
$(this).css('background-image', 'linear-gradient( to top, #8D005B 0%, #8D005B 90%, black 50%, black 100% )');
$(this).find('.av-parallax-inner').css('background-color', 'transparent');
}
if($(this).hasClass('avia-bg-style-fixed')){
var headerHeight = $("#header").height();
$(this).css({
'background-image' : ''+bgImg+' ,linear-gradient( to top, #8D005B 0%, #8D005B 90%, black 50%, black 100% )',
'background-position' : ' '+bgPos+' , 0px '+headerHeight+'px',
'background-color' : 'black',
});
}
else {
$(this).css('background-image', ''+bgImg+' ,linear-gradient( to top, #8D005B 0%, #8D005B 90%, black 50%, black 100% )');
}
});
})(jQuery);
});
</script>
<?php
}
add_action('wp_footer', 'add_gradient_to_section_bg_image');
But: but the background-repeat/background-size will be the same as the alb settings for the image. So if you like to have different settings for the gradient – we had to add additional script.
for example: for fixed positioning we had to shift the gradient from top to header-height distance if the section is the first element
see: https://enfold.webers-webdesign.de/two-bg-images/
Hi,
After updating to the lastest version of Enfold.. I lost the space between the tiles in the Masonry block for my news-items and portfolio items. There should be a lareg gap between the tiles.
Can you help me to fix this?

Thanks!
Best regards, Rogier
HI,
do you have a solution to set another color for the content background than the tittle background color of the accordion?
For example: the title background of the closed accordion is red – now also the background of the content of the open accordion is red, but nic would be a light gray so the text is better to read.
In enfold accordion settings ai just can define the title and the font color.
Thank you for helping!
Hi,
I added the code, but now there is a new error:
Fatal error: Uncaught Error: Cannot use object of type avia_product_slider as array in /home2/patiowarehouse3z/public_html/wp-content/themes/enfold-child/search.php:73 Stack trace: #0 /home2/patiowarehouse3z/public_html/wp-includes/template-loader.php(106): include() #1 /home2/patiowarehouse3z/public_html/wp-blog-header.php(19): require_once(‘/home2/patiowar…’) #2 /home2/patiowarehouse3z/public_html/index.php(17): require(‘/home2/patiowar…’) #3 {main} thrown in /home2/patiowarehouse3z/public_html/wp-content/themes/enfold-child/search.php on line 73
Hi LiftTech,
We’re happy to hear that :)
Thanks for using Enfold and have a great day!
Best regards,
Nikko
Hi Peter
Thanks for contacting us!
As for retrieving your login details, please put your purchase code in private content.
If you don’t know where to find it, please follow the instructions:

As for updating the theme, please do the following:
1. Make a backup:
– Site Backup: https://kriesi.at/documentation/enfold/backup-wordpress-site/
– Theme Settings Backup: https://kriesi.at/documentation/enfold/backup-theme-settings/
2. Login to your WordPress Dashboard, and go to Enfold > Theme Update and you should be able to update your theme there.
Hope this helps.
Best regards,
Nikko
Hi mgyura,
Can you try to disable Javascript File Merging And Compression and CSS File Merging And Compression in Enfold > Performance?
Best regards,
Nikko
Hi AlpineWeb,
We’re glad that we could help you :)
Thanks for using Enfold and have a great day!
Best regards,
Nikko
Hi Franz,
I’m glad that we could help you :)
Thanks for using Enfold and have a great day!
Best regards,
Nikko
Hi billbasler ,
On mobile I would like the “Main” 4/6 center column to present first, with the left 1/6 column second, and the right 1/6 column third. Can you help out on this?
Please add this CSS code in Enfold > General Styling > Quick CSS:
@media only screen and (max-width:767px) {
#av-extra-columns .entry-content-wrapper {
flex-direction: column;
gap: 30px;
}
#av-extra-columns .flex_column {
order: 0;
}
#av-extra-columns .flex_column.avia-builder-el-first,
#av-extra-columns .flex_column.avia-builder-el-last {
flex-basis: auto;
order: 1;
}
}
Best regards,
Nikko
Hey Sven Schneider,
Thank you for the inquiry.
A single license is granted lifetime access to updates, and it can be used for a single domain. The token is required to be able to update the theme automatically from the Enfold > Theme Updates panel. Please check the documentation below for more info on how to generate a private token.
// https://kriesi.at/documentation/enfold/theme-registration/#what-is-an-envato-personal-token
Best regards,
Ismael
Hey forestrygy,
Thank you for the inquiry.
We get an error from Google Maps when editing any of the pages, but when we checked the Enfold > Google Services panel, the map is disabled, and no API key has been added. Did you load the map script somewhere else?
Best regards,
Ismael
Hi,
Thank you for the inquiry.
Did you set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior to the third or fourth option? It’s possible that the captcha is disabled because the privacy cookies block the external services. If you want to load the services without user consent or without confirming the cookies, you can set the Default Cookie Behavior to the first or second option.
Best regards,
Ismael
Hi,
The latest version is already available. You can download it directly from your Themeforest account or do an automatic update in the Enfold > Theme Updates panel.
Best regards,
Ismael
Hey Dare_Care,
Thank you for the inquiry.
If you have a child theme, you can override the magazine.php file by following the steps below.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
In the child theme’s functions.php, add this code:
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
function avia_include_shortcode_template($paths)
{
$template_url = get_stylesheet_directory();
array_unshift($paths, $template_url.'/shortcodes/');
return $paths;
}
Then in your child theme create a folder named shortcodes, create another folder called magazine and inside, add a file called magazine.php, then paste this code: https://pastebin.com/VCTFQuQ5
Best regards,
Ismael
Hi Ismael,
Thank you for your help. I have the header we want now in place. The problem being now is I want to ‘old” header that is part of the theme that appears below it to be removed along with the social media icons. I don’t see anywhere in the functions.php file in my Enfold Child theme where this could be pulling in from.
How would I go about removing the default theme header so only my customer header widget displays?
Thanks!
Brian H
LiftTech