Hallo,
wie kann ich statt Google Tracking Matomo Tracking verwenden? Ich möchte, dass Matomo im Cookie-Consent Banner erwähnt wird und der Besucher das Cookie abwählen kann. Daraufhin trackt Matomo ohne Cookies.
Wie ist Ihre Empfehlung Matomo im Enfold Theme zu verwenden? Ich wundere mich etwas, dass ein östereichisches Unternehmen die Datenschutzvorgaben der EU nicht in sein Theme integriert hat. Sicher geht es vielen anderen Nutzern des Themes genauso.
Vielen Dank für Ihre Unterstützung und freundliche Grüße
LoMoe
Hallo,
i want to add a button above the main menu right but inside the menu block not in the top menu line.
So, i used the hooks but i guess, there is no such hook for my need… any idea how to place the button like this?
Button was created as custom widget.
This is the code i use to implement:
/* widget in header */
add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
function enfold_customization_header_widget_area() {
dynamic_sidebar( 'btn-immo-bewerten' );
}
This is how it looks like

And this is has it has to be

-
This topic was modified 1 month, 2 weeks ago by
xeovision.
try this in child-theme functions.php:
function custom_replace_burger_anchor_with_button( $items, $args ){
$pattern = '/(<li[^>]*class="[^"]*av-burger-menu-main[^"]*"[^>]*>)\s*<a([^>]*)>/is';
$items = preg_replace($pattern, '$1<button type="button" $2>', $items);
$items = preg_replace('/<\/a>(\s*<\/li>\s*$)/', '</button>$1', $items);
return $items;
}
add_filter( 'wp_nav_menu_items', 'custom_replace_burger_anchor_with_button', 9999, 2 );
BUT: Please note that in this case, you will no longer need to assign all styles to the a tag, but rather to the button tag.
In this case, it might be better to use role=”button” and class=avia-button.
function custom_enhance_burger_anchor_regex( $items, $args ) {
$pattern = '/<a href="#" aria-label="(.*?)"/i';
$replacement = '<a href="#" role="button" class="avia-button" aria-label="$1"';
$items = preg_replace($pattern, $replacement, $items);
return $items;
}
add_filter( 'wp_nav_menu_items', 'custom_enhance_burger_anchor_regex', 9999, 2 );

No CSS break: Since it remains an anchor-tag, all Enfold styles for the menu continue to work perfectly.
A11y-compliant: With role=”button,” we tell the screen reader: “Ignore that there is a link here; treat this element like a button.”
maybe it is better to not add the class avia-button because it might come into conflict with some stylings.
use a different class there f.e.: avia-burger-button
then you can easily select it via this class.
First of all, the icon is marked with aria-label=“Menu,” which is best practice.
And to understand your question correctly, they consider an anchor tag with such a label to be misleading?
So you would prefer it to be like this?

by the way – all enfold buttons do not have the button tag – they got that extra-class : avia-button
Hello Yigit:
I’m continuing to experience “THE SAME recurring FATAL ERROR” on this live website (https://www.drisabelbalza.com) that triggers WordPress “Your Site is Experiencing a Technical Issue” emails repeatedly. I don’t know why this annoying E_ERROR doesn’t go away, even though I tried your previous recommendations. What can I do next?
This is from yesterday, January 24, 2026:
Environment:
WordPress version: 6.8.3
Parent theme: Enfold 7.1.3
Active theme: Enfold Child (version 1.0)
Current plugin: (version )
PHP version: 7.4.33
Error Details
=============
An error of type E_ERROR was caused in line 223 of the file /home/drisabel/public_html/wp-content/themes/enfold/includes/classes/class-social-media-icons.php. Error message: Uncaught Error: Class ‘avia_font_manager’ not found in /home/drisabel/public_html/wp-content/themes/enfold/includes/classes/class-social-media-icons.php:223
Stack trace:
#0 /home/drisabel/public_html/wp-content/themes/enfold/includes/classes/class-social-media-icons.php(259): avia_social_media_icons->build_icon(Array)
#1 /home/drisabel/public_html/wp-content/themes/enfold/includes/classes/class-social-media-icons.php(288): avia_social_media_icons->html()
#2 /home/drisabel/public_html/wp-content/themes/enfold/includes/helper-main-menu.php(22): avia_social_media_icons(Array, false)
#3 /home/drisabel/public_html/wp-includes/template.php(812): require(‘/home/drisabel/…’)
#4 /home/drisabel/public_html/wp-includes/template.php(745): load_template(‘/home/drisabel/…’, false, Array)
#5 /home/drisabel/public_html/wp-includes/general-template.php(206): locate_template(Array, true, false, Array)
#6 /home/drisabel/public_html/wp-content/themes/enfold/header.php(275): get_template_part(‘includes/helper’, ‘main-menu’)
#
Best regards,
Claudia
try in your child-theme functions.php:
function ava_custom_toggle_behavior(){
?>
<script type="text/javascript">
(function($) {
$(window).on('load', function() {
$('.toggler').on('click', function() {
var $current = $(this);
// Short delay so Enfold can set its own classes
setTimeout(function() {
if ($current.hasClass('activeTitle')) {
// Find all other togglers on the page that are active
$('.toggler').not($current).each(function() {
if ($(this).hasClass('activeTitle')) {
// Simulate click or remove classes manually
$(this).trigger('click');
}
});
}
}, 100);
});
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'ava_custom_toggle_behavior');
Hi,
Glad that you were able to solve this, 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 you were able to solve it, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
I solved it by doing the following as instructed by Gemini.
1. Check the ‘Overwrite Link’ setting for your portfolio items.
Enfold allows you to manually configure where links are sent from individual portfolio posts. If this section is blank or incorrect, an about:blank error will occur.
How to check: In the WordPress admin, click [Portfolio Items] on the left menu -> the post in question.
Check: Locate the [Additional Portfolio Settings] section on the right or bottom of the editing window.
Fix: If the Overwrite Portfolio Link setting is set to ‘Define custom link,’ check that the address is correct. (If it’s blank, try changing it to ‘Link to item.’)
or even better – just use the team-member element as it is and parse a popup by your own.
see with snippet on that example page: https://webers-testseite.de/teammember-vitae-2/
PS: It is always best to examine each individual case closely, as this is the only way to offer a customized solution. Otherwise, one indulges in speculation.
The last solution has the advantage that you only use the pure Enfold element for team members and then create your own lightbox with it. Disadvantage: you would have to rebuild your page and discard our previous design. In the window on the right side of the page, you can see that only plain text is entered in the Description Input Fiele — the Lightbox retrieves the image, name, and position from the existing DOM elements.
To change the aria-label – just edit these lines:
tPrev: 'Previous Biography',
tNext: 'Next Biography',
KaiGuest
Hello,
We are planning to create a website for a client and are considering using Enfold for this project. The client intends to sell services to their customers through a plugin we will develop.
We would like to know which license would be appropriate for this purpose: the “Regular” or the “Extended” license? Additionally, would it be better for the client to purchase the license themselves, or can we purchase the license on behalf of the client?
Thank you in advance for your assistance.
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
I’m using the plugin Filter Everything Pro (https://filtereverything.pro/). The plugin works perfectly with the custom post type “Organizations” (https://www.give.or.at/organisation/). However, the filter isn’t working correctly on the shop page (https://www.give.or.at/material/). As long as the number of filter results is less than the number of products per page (e.g., 6 results for 15 products per page), it only displays the 6 filtered results. But the pagination for all 53 shop pages is visible at the bottom.
Please filter for “Aggression” + “School Leadership” and you’ll see the problem. If you access the results page externally at https://www.give.or.at/material/thema-aggression/target-schulleitung/, the pagination disappears.
The filter “Aggression” returns 42 results. The first page shows correctly filtered results, but again with pagination for 53 pages. From page 2 onwards, the products appear unfiltered again. However, accessing the results page externally at https://www.give.or.at/material/thema-aggression/ only shows three pages with the correct results.
I tested the plugin on another domain with a standard WordPress theme and WooCommerce. It’s definitely a problem with Enfold. The filter plugin worked correctly in the shop during the initial installation.
Best Regards,
Günter
Hey Alex,
The theme can only be purchased here: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990
When I check Envato offers credit cards:

Best regards,
Mike
AlexGuest
Hi! How can I buy enfold wordpress theme? Envato Market does not have a crypto or credit card payment option.
Hi
I too have had a message about the 7.1.3 Enfold Cross Site Scripting (XSS) vulnerability
Please advise
Thank you
Nick
Hi everyone,
I know this is a basic question, but I don´t know how to solve it. After installing WordPress and Enfold, my page builder looks like this (See picture 1). But I would like to have an environment with metaboxes on the side, similar to what picture 2 shows. It must be a simple configuration, but I cannot find the right key. Can someone help me to achieve this desired configuration?
In other words:
Picture 1: Current working setup

Link: https://drive.google.com/file/d/1DB0Btl_SxxnxGEIuTxbusOWdMC7nyNIE/view?usp=sharing
Picture 2: Desired outcome

Link: https://drive.google.com/file/d/1sIcB5jiVChSJPVlCUO8EYAXjGkp2N2RZ/view?usp=sharing
Othernotes:
I just started with this website. Installed plugins: RankMath SEO, WorldFence, Cookie Compliance, and UpdraftPlus.
-
This topic was modified 1 month, 2 weeks ago by
tinycreatorsclub.
-
This topic was modified 1 month, 2 weeks ago by
tinycreatorsclub. Reason: Pictures were not showing up
-
This topic was modified 1 month, 2 weeks ago by
tinycreatorsclub. Reason: The pictures were still not showing up, I pasted the link on the text
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi Mike,
Both IPv4 and IPv6 are whitelisted.
Please take a look and let me know.
If you are able to access, the most urgent thing to resolve is that the product page sidebar moved to the left like all other pages.
Ismael sent me those 2 steps (PHP and quick CSS), but the PHP is not running properly.
https://snipboard.io/iBH6VE.jpg
Also, after you told me that the sidebars/Woo filters won’t work on our home page, I’ve downloaded a Mega Menu plugin to bring all the categories and search filters to the home page. But … I can’t bring them up as a menu within the same design/location we have, using the Enfold theme default menu placement. It always shows underneath the header. It would be awesome if we could have the same look and feel.
Online Shop: https://snipboard.io/Yw6hGR.jpg
Akhurst global site: https://snipboard.io/KlMEuG.jpg
You’ll notice that we use a code snippets plugin to store all the specific code for each site, as we run our sites on a multisite platform.
The website is 99% done, and I think you can help me get it done once and for all ;)
https://snipboard.io/kaFzCy.jpg
Thank you so much!
Leo
We’re having problems with an order document on a website built with the Enfold theme. The document doesn’t arrive when the customer resubmits or ends up in the spam filter.
What could be the problem?
Link to document:
Rina PeruGuest
I am considering to use the Enfold Lawyer. I’m not a lawyer but I think that the layout will work best for our business (cosmetic ingredients). I’m sure the colors are customizable, but can there be a full slider on the Home page? Enfold Lawyer demo Home page is fixed.
Solutions
This security issue has a low severity impact and is unlikely to be exploited.
maybe it is not so urgent ;)
____________________
Perhaps it’s time to introduce a nonce solution for all Enfold scripts?
(for my own i have written a small plugin that will bring to every script/inline-script a nonce-key; and my csp directive says:
script-src ‘nonce-key==’ ‘strict-dynamic’ ) that is the best against XSS – and check f.e. on: https://securityheaders.com/?q=https%3A%2F%2Fwebers-testseite.de&followRedirects=on )
Hi,
We’ve built a lot of websites with Enfold and WPML. This always works fine. However, now we’re using Polylang for a website and this has some conflicts with Enfold. It seems the options page for Enfold isn’t supported in multiple languages. Whenever we change a setting in one language, it clears or overwrites the settings in other languages too. Any idea how to solve this?
Andrew McMullenGuest
Hello,
I want to make a serious complaint about the Enfold theme’s very large “Reset All Options” button being placed right under every page in Enfold Theme Options. The placement makes it extremely easy to click by accident.
I destroyed my site in one click after spending three days meticulously setting it up. I’ve seen on your forums that this issue happens to many users, and it’s not uncommon. My support period has expired and I paid for this theme a long time ago, so it feels unfair that I have to pay again just to report how problematic this placement is.
There is no clear “Are you sure?” or confirmation before the reset executes, and the button is right where your eye and cursor naturally land as you scroll the settings. When I have clicked it in the past, I thought it was resetting only the specific settings page I was on. This time the placement caused the click — I didn’t even read the button text before instinctively clicking because it was right where I expected the “Save” or similar button to be.
This needs to be updated. A destructive action like this should be in a safe location and require a confirmation step, not shown prominently on every settings page where it’s constantly open to accidental disastrous results. It’s a simple change that would prevent a lot of unnecessary loss and frustration for your users.
In addition to a confirmation prompt, the reset action should recommend that users export their theme settings first (using Enfold > Import/Export → Export Theme Settings File), so they can easily restore customisations if something goes wrong. According to the documentation, exporting theme settings saves all theme options into a file that can be re-imported later — this is exactly the kind of protective step missing before a destructive action like “Reset All Options” is run.
guys please , I beg of you fix this issue, its heartbreaking when you loose all your settings because an easily preventable mistake.
Thank you.
Andrew
there is a globaly set rule on enfold :
.container_wrap {
clear:both;
position:relative;
border-top-style:solid;
border-top-width:1px
}
Personally, I consider them unnecessary. This is what I set on my installation:
#top .container_wrap {
border: none !important;
}
But that’s actually a well-known problem.
Hi Ismael,
Sorry, but you have a current new security vulnerability that was published three days ago on Patchstack! And not the vulnerability that was fixed with 7.1.3 in October 2025!
https://patchstack.com/database/wordpress/theme/enfold/vulnerability/wordpress-enfold-theme-7-1-3-cross-site-scripting-xss-vulnerability
So please check and fix it quickly and deliver an appropriate version.
Hey PACO ORTEGA,
Thank you for your interest in the theme.
To answer your questions:
1. All of the demos you see in the preview are included with Enfold. You are not purchasing just one demo. After installing the theme, you can import any of them from Enfold > Import/Export. More details here: Import Demos
2. By default, Enfold installs with a clean, blank layout and no demo styling. You can then either build your site from scratch or import a demo and customize it to your liking. The demo import process is explained in the link above.
3. Yes. Enfold has extensive documentation covering all aspects of configuration and usage. You can get started here: https://kriesi.at/documentation/enfold/
4. Enfold does not use Elementor or WPBakery. It comes with its own native Advanced Layout Builder (ALB), which is tightly integrated with the theme. You can learn more about it here: https://kriesi.at/documentation/enfold/intro-to-layout-builder/
5. Yes, a single license includes 6 months of support, with the option to extend it afterward. Average response times are typically within one business day, depending on ticket volume.
6. Enfold is actively maintained and has been in continuous development for over 13 years. Support and compatibility updates will continue, ensuring the theme works with current and future versions of WordPress and PHP.
Let us know if you need more information.
Best regards,
Ismael
Hey Jody,
Thank you for hte inquiry.
This has been fixed in the latest version of the theme (7.1.3). Please make sure to upgrade to the latest version.
Patchstack team XSS vulnerability report: column and cell link fixed
— https://patchstack.com/database/Wordpress/Theme/enfold/vulnerability/wordpress-enfold-theme-7-1-2-cross-site-scripting-xss-vulnerability?_s_id=cve
Best regards,
Ismael
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