Thank you for your feedback! I believe the problem lies in the fact that legacy markup is disabled in Gravity Forms. According to the description on the following page https://docs.gravityforms.com/gform_enable_legacy_markup/, the following code “add_filter( ‘gform_enable_legacy_markup’, ‘__return_true’ )” must be installed in the functions.php file. Where do I need to enter this in Enfold?
Best regards, Jens
Understood. I knew it was a long shot. I was hoping and fishing for any nuances or settings regarding PHP and CloudFront. I know Enfold is robust and supports high performance. The support options I’ve been working through are noting the large number of calls that ALB elements make when writing and rendering a page. It is stable (and fast!) in other environments and even on other domains in THIS environment, so I’m sure there is a simple but elusive configuration issue.
I will be pursuing help from other options, and I will do my best to share any solutions I find.
Hi,
Thanks for the clarification. That is likely due to something in your content breaking the layout builder, like special characters or shortcodes. You could try to remove anything like that from the content to see when the problem starts again. You can activate debug mode under Enfold->Layout Builder->Show advanced options in order to display the builder shortcodes, then search and remove content that way.
Best regards,
Rikard
Hi,
In the past the privacy settings at the bottom have been caused by a plugin, try disabling all of your plugins.
It looks like you are using a CDN, which maybe caching, you could also try disabing this and disable the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression to see if that helps.
Best regards,
Mike
Hey jenscasper,
I’m not sure how to want the button changed:

but the font, color, and background color are from the plugin:
color: var(--gf-local-color);
font-family: var(--gf-local-font-family);
background-color: var(--gf-local-bg-color);
at: /wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-theme-framework.min.css
note the “gf” in the css var, this is from Gravity Forms and not Enfold.
Perhaps Gravity Forms is only using the theme standerd colors and not appling their own colors, so to match whatever theme is active?
If you explain how you want it changed we can help override this with css.
Best regards,
Mike
Hey gregsby14,
When I check it looks like the “Enfold Parallax Demo” has been imported, the “Enfold One Page Agency” is a deffernt demo.
Are you trying to import two demos at the same time?
Please note that only one demo can be imported, each demo will overwrite the previous.
If you had the Parallax Demo and wish to switch to the Agency demo, first reset your site with the WP Reset plugin to remove the previous demo.
The Parallax Demo is a one page demo.
Best regards,
Mike
Hi,
I’ve made a fresh install of WordPress on my site (see below) and registered the theme and increased the memory settings.
I’ve then went to install the demo (Import: Agency – Enfold Parallax Demo) but none of the content or pages seem to show up.
I’ve had a look at the documentation and can’t see what I’ve done wrong. Can you help please?
Hi,
Glad Ismael could 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,
Thanks for that. Since you have copied shortcode into widgets, the theme won’t know that they are being used. I would suggest that you set the Disabling Of Template Builder Elements options under Enfold->Performance to always load all elements if you want to use shortcode in widgets.
Best regards,
Rikard
Hi everyone.
Guenni007’s support was invaluable, as is often the case.
I was still surprised, however, because I use the Enfold theme in other projects with other starting demos, and in some cases the title is already present.
I therefore thought there was some sort of on/off switch to activate, or a preference that I had overlooked.
In any case, the solution proposed is efficient and effective.
Is there a way to also remove the horizontal gray line highlighted in the image, which is missing without the title?

Thank you for your time.
Hi,
Glad Rikard could 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,
Great, I’m glad that you found the problem. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Dear Sir or Madam,
Could you please help me solve the following problem? When using the Gravity Forms plugin and the Enfold theme, the font and color of the buttons are not displayed correctly. You can find the corresponding form at the link below.
Best regards,
Jens Casper
Hi,
Glad Ismael could 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 Ismael and thanks for your time.
probably didn’t explain myself clearly.
The settings shown in your image are the same ones I use in other Enfold-themed projects, but they’re only used to manage the menu.
My question was related to what I highlighted in the previous image, which I’ve better indicated in yellow in this image: “You are here: Home / Forums / Enfold / Portfolio Grid Settings”

-
This reply was modified 5 months, 3 weeks ago by
icarogioiosi.
Hey dondela,
Please try the following in Quick CSS under Enfold->General Styling:
a.av-masonry-entry {
text-decoration: none !important;
}
Best regards,
Rikard
Dear Team:
for the first time ever we need to change the hosting provider. Our question is how do do this best. The current plan is:
- create back up of current WordPress/Enfold installation/website
- do all registry changes etc.
- upload the backup to new hosting once set up of new provider complete
Please indicate whether above scheme is workable. Do we need to download a new license for Enfold?
Thanks,
Magnus
-
This topic was modified 5 months, 3 weeks ago by
mbosse99.
-
This topic was modified 5 months, 3 weeks ago by
mbosse99. Reason: formatting improvement
One problem that could arise is if you have different logotypes. For example, the standard logo and alternative logo are SVG files, but the one on this page should be a PNG instead. As long as you stick to one type, there shouldn’t be a problem.
the color of the menu you can redeclared like this :
( because i do not see private content area – here with example page-id’s)
#top.page-id-44112 #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-text {
color: red;
}
#top.page-id-44112 #header.header_color.av_header_transparency .av-main-nav > li > a:hover .avia-menu-text {
color: yellow;
}
you can replace the alternate logo (that for transparency) : you need to know the ID – if you replace a svg with a png file you had to know the url too of that replacement logo.
put this to your child-theme functions.php (replace the page-id and the other parameters)
function av_change_transparency_settings($header){
if( is_page('44112') ){
// add class to the #header for using alternate logo (It's important to leave a space at the beginning within the quotation marks.)
$header['header_class'] .= ' av_alternate_logo_active';
// url of the replacement logo
$header['header_replacement_logo'] = "/wp-content/uploads/globe-color.png";
// the id of the replacement logo - check on media library list view
$header['header_replacement_logo_id'] = 49022;
}
return $header;
}
add_filter('avf_header_setting_filter','av_change_transparency_settings');
setting that extra class av_alternate_logo_active is not needed if you have a standard transparency logo set on enfold options.
maybe: you had to set some extra css for png logo on width and height on responsive case
see example page here: https://webers-testseite.de/bg-video/
PS: you see on my other pages (f.e. the landing page/home) of that example installation – that i do not use the transparent logo. Because i use svg files – i can fill the letters differently for transparent header. That is the reason why i had to add that extra class on that example page.
Hey Nik Doosl,
I’m not sure if the plugin will work with Enfold. We don’t have experience with the plugin.
When I check the archive, I only fine one post about the plugin and had a conflict, it was not your issue and it was from 2020, I’m sure a lot has changed since then.
While we are limited in supporting third party plugins, we try to help were we can, but we can not guarantee Enfold will work with your plugin.
Best regards,
Mike
Matthias GruhnGuest
Guten Tag,
wir haben die Version 4.5.5 für unseren kleinen Waldkindergarten am laufen. Leider ist kein Update auf PHP 8.0 möglich, es kommen folgende Fehler:
—————————————————————
Deprecated: Optional parameter $condition declared before required parameter $handle is implicitly treated as a required parameter in /var/www/vhosts/wald-igel.de/httpdocs/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 1559
Deprecated: Optional parameter $condition declared before required parameter $handle is implicitly treated as a required parameter in /var/www/vhosts/wald-igel.de/httpdocs/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 1582
Notice: Die Funktion _load_textdomain_just_in_time wurde fehlerhaft aufgerufen. Das Laden der Übersetzung für die Domain avia_framework wurde zu früh ausgelöst. Das ist normalerweise ein Hinweis auf Code im Plugin oder Theme, der zu früh läuft. Übersetzungen sollten mit der Aktion init oder später geladen werden. Weitere Informationen: Debugging in WordPress (engl.). (Diese Meldung wurde in Version 6.7.0 hinzugefügt.) in /var/www/vhosts/wald-igel.de/httpdocs/wp-includes/functions.php on line 6121
Deprecated: Creation of dynamic property avia_sidebar::$title is deprecated in /var/www/vhosts/wald-igel.de/httpdocs/wp-content/themes/enfold/framework/php/class-sidebar-generator.php on line 34
Deprecated: Optional parameter $params declared before required parameter $overwrite_value is implicitly treated as a required parameter in /var/www/vhosts/wald-igel.de/httpdocs/wp-content/themes/enfold/config-woocommerce/config.php on line 1427
Fatal error: Unparenthesized a ? b : c ? d : e is not supported. Use either (a ? b : c) ? d : e or a ? b : (c ? d : e) in /var/www/vhosts/wald-igel.de/httpdocs/wp-content/themes/enfold/functions-enfold.php on line 324
——————————————————————
Würden Sie uns für etwas Geld ein Update ermöglichen, damit wir endlich wieder eine sichere Website haben können?
Mit freundlichen Grüßen,
Matthias Gruhn (Admin des Waldkindergartens)
Hi,
Thanks for letting us know. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
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
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Nik DooslGuest
Hello Team,
i am working on a WP project which offers Clubmembers to publish classified listings based on the DIRECTORIST plugin. But Payment will be a recurring member fee so that no Commerce/ Shopping addons are needed.
But contrary to all typical classifieds market i don’t want a Frontpage looking just like ebay etc… but an individual looking Frontpage with lots of User info/ FAQ/ testimonial/ e.g. with Iconboxes, Infoboxes (resp./ parallex).
All themes which i checked thru until now (that cooperate nicely with the DIR plugin pages and which are not PageBuilder focused) they all look the same on the Frontpage.
So my Question is:
Will ENFOLD cooperate with DIRECTORIST plugin and still let me build an individual Frontpage from your Demos?
Thanks a lot for your feedback
Nik
Annelies Versteeg-HazekampGuest
I asked this morning about this, but the answer is not unambiguous. We have paid for the version 3.x. in the past. Does it mean that the upgrade costs $59,=? Is there a discount on this purchase?