Thank you so much for your help, Mike, very much apprchiated!
I am digging inside WP and Enfold and hope to become more skilled quickly.
PHP version update is the next step due. Just wanted to make sure that all other items are up-to-date.
Many thanks for your quick help,
Peter
I have tried the workaround from Yigit, but it does not change anything. The variable font is still only working with 400 and 600 styles.
So it looks to me (Guenni007 said the same thing) that the problem is not in the Enfold uploader.
Hey Alwin,
Enfold’s font uploader does not support variable fonts at the moment. Our devs said that they will look into it. We will post the updates here :)
In the meantime, if you would like to use a work around, following works for me:
– Download variable font from Google
– Upload it on your server
– Add following code to Enfold theme options > General Styling > Quick CSS
@font-face {
font-family: 'Mulish';
src: url('/uploads/avia_fonts/type_fonts/mullish/Mulish-VariableFont_wght.ttf') format('truetype');
}
– Set font family using CSS
Regards,
Yigit
Hi, Mike,
thank you very much for your hints, our provider has modified the access rights and now it has worked to add the custom fonts! Regarding layer slider, unfortunately I’ve to type in the font name to make layer slider accepting Titillium, but at least it works there, too.
Just one thing now: Safari’s web inspector tools still are listing sources from two google Titillium fonts (see screenshot-link in private content). But I’ve disabled the former used custom font plugin and now I’m using only Enfold custom font feature. Where do these font source entries come from? Even source code of the site doesn’t show a link to google.
Kind regards
Armin
Hi @Mike,
thank you!
Basically, however, this is already strange. Because in the enfold backend the fonts are also wrong – sometimes, not ever. Even the Enfold font preview. see example screenshot.
many greetings
Susanne

This reply has been marked as private.
Hi,
Thanks for the logins, I found that your parent theme was in an extra directory /enfold/enfold/ so the child theme couldn’t find the files of the parent theme, I corrected and activated your child theme.
I noticed in WordPress ▸ Dashboard ▸ Tools ▸ Site Health your PHP version is 7.3.33 and the minimum recommended version for WordPress is v7.4, please ask your webhost to update this for you.

Best regards,
Mike
Palle DahlGuest
Dear support team,
I have problems posting a question when logged into my support account?
We recently bought ENFOLD theme for building our new website. The purchase and setup of the basic WP platform was done by external help.
I have registerede our purchase code, and tried to set up an account for support, attached to my email (se below private content)
When logged into the account, it doesn’t seem that I’m allowed to post questions anywhere?
Please, can anyone help me?
Best Regards,
Mr. Palle Dahl
PS. I’m quite the novice in terms of CSS, hoping to learn some basic more knowledge through this awsome forum.
Hi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)
Enjoy the rest of your day!
Best regards,
Yigit
Hey sroetheli,
Thank you for the inquiry.
You can adjust the style of the burger menu items in the Enfold > Advanced Styling panel. Look for the Menu Links in overlay/slide out in the dropdown, insert it, then adjust its style.
You can also use this css code.
.html_av-overlay-side #top #wrap_all .av-burger-overlay li a {
line-height: 1.3em;
height: auto;
padding: 15px 50px;
display: block;
text-align: left;
text-decoration: none;
font-size: 20px;
}
Best regards,
Ismael
PS : i wonder about the selector of flex_column:nth-of-type(n+6)
this is on theory wrong – but i do not see why it has to be this way.
If i layout it myself you see the right selection of the 4th and 5th element in that container is .flex_column:nth-of-type(n+4)
see here the way i would layout it: https://enfold.webers-webdesign.de/navi1/
this rule here:
grid-template-columns: repeat(3, minmax(0, 1fr));
means that there are 3 columns besides each other – and they will have exactly the same width.
you will often see :
grid-template-columns: repeat(3, 1fr);
but these columns will only have the same width if the content inside will allow that. ;)
Hey j0schi,
Thank you for the inquiry.
The theme sets the product thumbnail size to 450x450px by default but you can use this filter in the functions.php file to revert the product thumbnail settings back to default.
add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
return 'woocommerce_thumbnail';
}
Related threads:
// https://kriesi.at/support/topic/bug-in-enfold-for-woocommerce-prduct-images/
// https://kriesi.at/support/topic/woocommerce-product-image-size-bug/
Best regards,
Ismael
Hi,
Thank you for the inquiry.
Where did you add the strong tag? The issue might have occurred because you forgot to close the span tag.
<span class="headerinoverlay">TEXT ||MISSING CLOSING TAG HERE||
Have you tried to manually edit the shortcode from the shortcode field? You have to set the Advance Layout Builder (ALB) to debug mode first.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Best regards,
Ismael
Hi,
You can try the Coverage tab in Chrome Devtools but this will return all css that are not active or css rules that are only used when a specific setting is enabled and it will only capture unused code in the current page.
If you ran the tool in the home page of the default Enfold demo for example, the code below will be captured as unused if the Enfold > General Layout > Stretched Or Boxed Layout settings is set to Stretched Layout.
html.html_boxed {
background: #ffffff center center repeat scroll;
}
Please check the link below for more info.
// https://developer.chrome.com/docs/devtools/coverage/
You can also try WPRocket > Activate Remove Unused CSS. Make sure to create a site backup or a restore point before enabling it.
// https://www.wpbeginner.com/wp-tutorials/how-to-remove-unused-css-in-wordpress-the-right-way/
Best regards,
Ismael
Hey engage24,
I achieved this by adding 5 color sections each with a custom class of: white, blue, red, yellow, and purple and each with a height of 100% with a special heading for reference:

then I added this css:
.turn-white {
background-color: #fafaf8;
}
.turn-blue {
background-color: #3860be;
}
.turn-red {
background-color: #c7102a;
transition: background-color .5s ease;
}
.turn-yellow {
background-color: #ffa100;
}
.turn-purple {
background-color: #2b1378;
}
and added this script to the end of your child theme functions.php file in Appearance ▸ Editor:
function waypoint_change_background_color_scroll() { ?>
<script>
window.addEventListener('DOMContentLoaded', function() {
(function($){
var $sections = $('.avia-section');
var $white = $(".white");
var $blue = $(".blue");
var $red = $(".red");
var $yellow = $(".yellow");
var $purple = $(".purple");
$white.waypoint(function(direction) {
if (direction === 'down') {
$sections.addClass('turn-white');
$sections.removeClass('turn-purple');
}
if (direction === 'up') {
$sections.removeClass('turn-white');
$sections.addClass('turn-purple');
}
}, {
offset: '50%'
});
$blue.waypoint(function(direction) {
if (direction === 'down') {
$sections.addClass('turn-blue');
$sections.removeClass('turn-white');
}
if (direction === 'up') {
$sections.removeClass('turn-blue');
$sections.addClass('turn-white');
}
}, {
offset: '50%'
});
$red.waypoint(function(direction) {
if (direction === 'down') {
$sections.addClass('turn-red');
$sections.removeClass('turn-blue');
}
if (direction === 'up') {
$sections.removeClass('turn-red');
$sections.addClass('turn-blue');
}
}, {
offset: '50%'
});
$yellow.waypoint(function(direction) {
if (direction === 'down') {
$sections.addClass('turn-yellow');
$sections.removeClass('turn-red');
}
if (direction === 'up') {
$sections.removeClass('turn-yellow');
$sections.addClass('turn-red');
}
}, {
offset: '50%'
});
$purple.waypoint(function(direction) {
if (direction === 'down') {
$sections.addClass('turn-purple');
$sections.removeClass('turn-yellow');
}
if (direction === 'up') {
$sections.removeClass('turn-purple');
$sections.addClass('turn-yellow');
}
}, {
offset: '50%'
});
})(jQuery);
});
</script>
<?php
}
add_action('wp_footer', 'waypoint_change_background_color_scroll');
See my demo page here.
Best regards,
Mike
Dear Support Team: In my trying to add the Search form to my custom 404 page’s body, as in e.g.:
Nothing Found – Sorry, the post you are looking for is not available. Maybe you want to perform a search?
<search box> <magnifying glass search button>
The magnifying glass search button appears correctly for me there, but when I do a search from that search box, on the Search Results page, the magnifying glass search button is not displaying correctly on that page’s Search forms (neither in the header nor the body):
<search box> <little box with EB03 in it>
If I do a search via the Header’s Search form, the buttons appear correctly on the Search Results page.
Here’s how I got to this problem. First, I tried to add the following to a Code block on my custom 404 page, as you do in your default error404.php file:
<?php
get_search_form();
?>
but that did nothing. So I deleted that code. Then I tried copying and pasting into the Code block the following HTML Form code that I got from the source code for a 404 page from https://kriesi.at/themes/enfold-2017/x.html, a page that of course does not exist (I’m commenting out the initial part that is external to my Code block):
<!--<div class="entry entry-content-wrapper clearfix" id='search-fail'>
<p class='entry-content'><strong>Nothing Found</strong><br/>
Sorry, the post you are looking for is not available. Maybe you want to perform a search?</p>-->
<form action="https://kriesi.at/themes/enfold-2017/" id="searchform" method="get" class="">
<div>
<input type="submit" value="" id="searchsubmit" class="button avia-font-entypo-fontello" />
<input type="text" id="s" name="s" value="" placeholder='Search' />
</div>
</form>
Of course, I’m not surprised that just copying and pasting that search button’s value would not render properly on the Search Results page: as I said, it rendered as a little box with EB03 in it instead of the magnifying glass icon–in both the header and body search forms.
Can you please help?
Thanks,
Gary
-
This topic was modified 3 years, 6 months ago by
garysch37.
-
This topic was modified 3 years, 6 months ago by
garysch37.
-
This topic was modified 3 years, 6 months ago by
garysch37.
-
This topic was modified 3 years, 6 months ago by
garysch37.
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
Hey Christy,
Thanks for the link to your site, I see that you are using v4.7.6.4, you may wish to update to v5.1.2.
The issue with your footer columns is that the 1/4 columns have a width of 24.5% where they should have a with of 20.5%
Please check your custom css for this, or try this css in Enfold Theme Options ▸ General Styling ▸ Quick CSS field
#footer .av_one_fourth {
margin-left: 6%;
width: 20.5%;
}
#footer .first.av_one_fourth {
margin-left: 0%;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi,
Thanks for the feedback, yes, using a separate WordPress and Enfold theme there will allow you to have a holding page there.
Best regards,
Mike
Hi team, need your help.
I inherited a website to administrate that used Enfold in an early 4x version. The Theme was implemented as Enfold_Child and automatic updates were not set up, unfortuately. So I bought a new Enfold license today to get the latest release.
I did a manual update via FTP and then set the Enfold 5x version active.
Now my website looks skewed and I get the message, that Enfold_Child cannot find its parent Enfold…

Hope you can help a novice user to get this corrected and get the previous Enfold_Child Theme reactivated under 5.x…
many thanks,
Peter
-
This topic was modified 3 years, 6 months ago by
C41A.
Hello friends of Kriesi.
I have a problem that cannot be solved. I have installed the latest (clean) version of WordPress. I have installed the latest version of ENFOLD and everything has worked correctly.
The problem comes when I try to go to the “Import Demo” section and try to install any Demo for Enfold (for example, “Photography Portfolio Demo”, “Shop Demo”, “One Page Restaurant Demo”, but they all give me the same error:
“Error accessing file for download:
cURL error 28: Connection timed out after 10000 milliseconds”
I have tried with PHP 7.4, 8.0 and 8.1 but in all cases it gives me the same error. I have also tried changing the attributes in the FTP on the server, but nothing, the same error.
I have searched the forum, but I have not seen many cases like this, so I have not been able to solve the problem.
Any ideas? Thank you!
Tommi LehtoGuest
Hello, the hamburger menu icon doesn’t show in the navigation. Why is that? Should I renew the support? I checked the code and the .main-menu class is display: none !important; Little weird… Can You please help me? If I remember correctly this happened also last year and I had to buy a new license of the Enfold theme. I hope I don’t need to do it again this time.
Best regards,
Tommi Lehto
so – zunächst – bitte nicht bei den Enfold Optionen unter “Main Menü” die Option : “Append Search Icon To Main Menu” auswählen. Das wäre dann nämlich die Lupe.
Wie oben beschrieben das in die child-theme functions.php:
add_shortcode('avia_search', 'get_search_form');
function avf_add_search( $items, $args ){
if ($args->theme_location == 'avia'){
$search = '<li id="menu-item-search" class="menu-item menu-search menu-item-top-level">';
$search .= do_shortcode('[avia_search]');
$search .= '</li>';
$items = $items . $search;
}
return $items;
}
add_filter( 'wp_nav_menu_items', 'avf_add_search', 10, 2 );
und das hier in das quick css:
.av-main-nav-wrap > ul:first-of-type {
display: inline-flex !important;
height: 100%;
}
#menu-item-search {
line-height: 30px;
position: relative;
}
#menu-item-search #searchform {
position: relative;
top: 50%;
transform: translateY(-50%);
height: 40px;
line-height: 40px;
}
#top #searchform > div:first-of-type {
position: relative;
max-width: 200px;
opacity: 1 !important;
display: block !important;
}
#menu-item-search #searchform #s {
padding: 10px 40px 10px 5px;
font-size: initial;
background-color: rgba(255,255,255,0.85); /*** if you like to have transparency ***/
}
#top #searchform .ajax_search_response {
background-color: rgba(255,255,255,0.85);
position: absolute;
top: 45px;
padding: 10px 0;
width: 100%;
}
hier kannst du sogar alle Home Varianten durchgehen – passt immer ( unter Home ist das Dropdown )
4 entspricht dann deiner Header Setzung.
https://basis.webers-testseite.de/home4/
Installed Envato market plugin & token. Shows the Enfold theme & layerslider, but still shows 6.9.2. Set layerslider to auto update. Hoping it will update?
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,
As I understand your question, your activate domain should remain visible, and you have wordpress with a theme installed there “test.com”
your development site should show the “comimg soon” page while you are working on it, and a separate wordpress with Enfold is installed there “test.com/new”
in this case the “comimg soon” page will not interfere with your activate domain.
Best regards,
Mike
Hi,
LayerSlider 7.3.0 is bundled with the current version of the theme, which version of the theme are you running? If it’s not 5.1.2, then please update to that: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update.
Best regards,
Rikard
Hi,
Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Thanks for letting us know, I’ll go ahead and close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard