With the nickname, it’s not too hard to find your site. And when I see container that small (1010px), I know it’s not intentional. So there must be a rule in your ruleset that is not set correctly.
That css rule is not closed by a curly bracket.
Insert after the semicolon a curly bracket!
.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_orange {
background-color:var(--enfold-main-color-primary);
don’t know if an @import rule works well over quick css – but is unusual.
if your question does not concern your own website – then I am sorry, but it should be changed anyway.
PS: csslint.net shows a parsing error at the pseudo-class: is
but from my point of view that is correct.
Hey RaymondWillemse,
Please try to change one of the theme options and save, or toggle the file compression options under Enfold->Performance.
Best regards,
Rikard
Hey Antonio,
The update to 6.0.4 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
Hey ashleyknow,
Please try installing it via FTP instead: https://kriesi.at/documentation/enfold/install-enfold-theme/#ftp-install
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
AntonioGuest
Dear staff
on my site https://www.paolodaries.com/ there is a version 4.4 of Enfold.
If you see in the html code, you can see in the header
Debugging Info for Theme support:
Theme: Enfold
Version: 4.4
Installed: enfold
AviaFramework Version: 4.7
AviaBuilder Version: 0.9.5
aviaElementManager Version: 1.0
ML:1024-PU:64-PLA:5
WP:6.6.2
Compress: CSS:all theme files – JS:all theme files
Updates: disabled
PLAu:4
–>
now the question: our ex developer never updated the site and now he is disappeared.
How to fix the css that does not load well?
How to update the theme?
Hi –
I have four Enfold licences. I’m currently using two of them and want to install a third instance on a new website. I’ve downloaded the .zip files for all my licences, but when I go to upload any of them by following the Upload Theme link on the Add Themes page, selecting the .zip file and clicking on Install Now I get the message “The link you followed has expired. Please try again”. What am I missing?
Many thanks – Ashley
-
This topic was modified 1 year, 4 months ago by
ashleyknow.
Hi,
Thanks for the clarification. I’m sure that it would be possible to integrate that, but customisations like that is out of scope of theme support unfortunately. You could submit a feature request here if you like though: https://github.com/KriesiMedia/Enfold-Feature-Requests/issues
Best regards,
Rikard
Hi
This requires investigation none of the video options are looping in the current version of enfold (6.04)
Please can you take a look at this in a clean version of enfold
Thank you
-
This reply was modified 1 year, 4 months ago by
thinkjarvis.
Hey whdsolutions,
Please try the following in Quick CSS under Enfold->General Styling:
.html_header_top.html_main_nav_header #top .av_menu_left .main_menu, .html_header_top.html_main_nav_header #top .av_menu_left .main_menu .av-main-nav-wrap {
width: 100%;
}
#top #header .av-main-nav > li {
width: 25%;
}
Best regards,
Rikard
Ups¡¡ Wait a minute ;)
I copy template-builder.php as template-builder-single.php and in the new file I write the name:
<?php
/*
Template Name: Single ABL
*/
In which folder will I save the new file, for this will appear in the Template List Selector on the Post Page?
I copied in my enfold-child (root) and not appear, neither in enfold-child/includes ;(
Thanks.
Hey Flipper5183,
Thank you for the inquiry.
How did you translate the page? Please note that when translating pages built using the Advanced Layout Builder (ALB), you should avoid duplicating the pages and instead use the WPML Translation Editor. Please check the links below for more info.
// https://wpml.org/tutorials/2016/02/enfold-theme-and-wpml/
// https://kriesi.at/documentation/enfold/translation/
Best regards,
Ismael
My website is painfully slow. I can no longer ignore it. I’m at the point where I am considering swapping over to Shopify.
I am going to provide you with a login so that you can see what is going on, hopefully find the problem, and offer solutions. I use caches, CDNs, etc. I’m not an expert, I need things to work without getting a doctorate in website engineering.
https://www.wildsugar.fashion
I have used Enfold for many years, and my other websites run fine. It just seems to be this one that is struggling.
-
This topic was modified 1 year, 4 months ago by
dameonjamie. Reason: proofing
-
This topic was modified 1 year, 4 months ago by
dameonjamie.
Hi team, thanks in advance.
I just copied single.php from ENFOLD folder to ENFOLD-CHILD folder as phb-tbwa-single-post.php and in the top of php i write:
<?php
/*
Template Name: Single Post
Template Post Type: post
*/
Is the same file as single.php but with this extra name to appear in the selected list of templates in POST ENTRY.
The problem is that the content is different when I use one of both.
Here is the video file with the problem
https://drive.google.com/file/d/13-X3gCsNpuK2bEM2H8dhmdbtOb6B1kyp/view?usp=sharing
Thanks.
sadly the topic is closed: . https://kriesi.at/support/topic/search-function-with-link-list/
what i got so far:
https://enfold.webers-webdesign.de/pages
this is only for pages ( if you like to have that for posts – just change the post-type )
i managed it by a custom shortcode – then place this as : [glossary] on your page
function az_index($post_id) {
$AZposts = get_posts(array(
'numberposts' => -1,
'post_type' => 'page',
'orderby' => 'title',
'order' => 'ASC',
// 'category' => $cat
));
$current = "";
$nav = "";
$postlist = "";
foreach($AZposts as $AZpost) {
$postLink = get_permalink( $AZpost->ID );
$firstletter = strtoupper(substr($AZpost->post_title,0,1));
if($firstletter != $current) {
$nav .= "<span class='firstletters'><a href='#$firstletter'> $firstletter </a></span> ";
$postlist .= "<h3 class='firstletter' id='$firstletter'> $firstletter </h3>\n";
$current = $firstletter;
}
$postlist .= "<span><a class='postlink' href='".$postLink ."'>" . $AZpost->post_title. "</a></span><br>\n";
}
print $nav . "<br><br>" . $postlist;
}
add_shortcode( 'glossary', 'az_index' );
and :
.firstletters {
padding: 0 10px ;
background: #900;
margin-right: 5px;
display: inline-block;
}
.firstletters a {
color: #FFF;
text-align: center !important;
}
i tried to have unordered list after the h3 headings – but i couldn’t find a way to do that ( loop is hard to find the place to insert that tags ) – maybe a mod got a good idea
Hey Thomas,
Sorry for the late reply.
I think the problem is in ..\enfold\config-templatebuilder\avia-shortcodes\toggles\toggles.js around line 92:
allContent.not(content).slideUp( slideSpeed, function()
{
$(this).removeClass('active_tc').attr({style:''});
scroll_to_viewport();
});
Can you try to remove
scroll_to_viewport();
and check if this helps.
If not, can you give us admin access to a staging site where we can reproduce the problem (and we can modify this file to debug further) ??
Best regards,
Günter
Solution: Reinstate the default woo dropdowns – Applies to all Enfold sites:
The default woo filters are dequeued in enfold > config-woocommerce > config.php and config-365.php
We can requeue them and disable the Enfold filters by adding the following to functions.php in the child theme:
// Removes Enfolds sort by dropdowns
function avia_woocommerce_frontend_search_params()
{
return;
}
// Re-adds the default sortby dropdown
add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 20 );
Styling fixes
Add the following css:
@media only screen and (max-width: 767px) {
.responsive #top .woocommerce-ordering {
position: relative;
float: left;
clear: both;
margin: 0;
padding-bottom: 0px;
padding-top: 15px;
top: 0px;
margin-top:60px;
}
}
@media only screen and (min-width: 768px) {
.responsive #top .woocommerce-ordering {
position: relative;
float: left;
clear: both;
margin: 0;
padding-bottom: 15px;
padding-top: 15px;
top: 0px;
margin-top:0px;
}
}
#top.woocommerce-page .woocommerce-ordering select {
width: 100%;
font-size:16px;
padding: 8px;
line-height: 1.2em;
}
-
This reply was modified 1 year, 4 months ago by
thinkjarvis.
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
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
Hello, I’ve been using Enfold’s Open Street Map block for a while on many websites with no issues.
Now I have one on this particular page https://www.invebi.it/contatti/.
As you can see, I can’t manage to make the map work as expected. Gray squares are all around as the plugin couldn’t retrieve the map infos.
Any clue on how to solve it?
Thanks
Hi,
I mean custom elements. There are 3 team elements and 1 icon list in the avia layout architect choice of elements (layout, content, media, plugin and custom elements).
And these I can’t edit and save.
Thanks, Stefan
Hi,
Thank you for the update.
You can download the theme package from your Themeforest account, extract the enfold.zip file, extract the content of the zip file and upload it to the wp-content > themes directory manually via S/FTP. Please check the link below for more info.
// https://kriesi.at/documentation/enfold/install-enfold-theme/#ftp-install
Best regards,
Ismael
So you’re saying my hosting provider has my wp-config.php file and all the ‘wp-‘ files and folders? And what about the install video at https://kriesi.at/documentation/enfold/install-enfold-theme/#ftp-install
Looks like they’ve got a standard WP installation going. Please be kind enough to view this screenshot that compares what he’s looking at and what I’m looking at:
https://idsclientservices.com/-delivery/Enfold-install-tutorial.png
I think the ‘problem’ is in your court.
Please tell me whether you can send a proper ENFOLD installation or not.
Hey Tim,
I would need to see your post or page to offer a solution.
Please note that we typically ask that you have a activate support contract for support, as the contact form is not appropriate for support questions.
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
Hey Tim,
I don’t see any screenshots in the post, please reply to the thread https://kriesi.at/support/topic/categories-5/?avia_support_contact=avs_66f932b44f1ab8.19832496_1468049
instead of starting a new one for each reply.
Please note that we typically ask that you have a activate support contract for support, as the contact form is not appropriate for support questions.
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
TimGuest
Related to: https://kriesi.at/support/topic/categories-5/?avia_support_contact=avs_66f932b44f1ab8.19832496_1468049
Dear Mike,
Thank you very much for your quick reply. I have tried to illustrate it:

Normally it seems to look like in part 1 with Enfold. As in part 2 it would be great: I found out how to left-align the heading from an earlier post of yours. But I have not been able to find out whether you can also set the categories (in each post) left-aligned via CSS in your theme. Best regards!
Hello Enfold team,
i’d like to change several things of the dia slideshow element:
>The title gets the h1-tag, i’d like to change this to h3
>add a transparant overlay
>center the title
>configure the font size of the title
in quite a few things it becomes similar to this (masonry)

TimGuest
Related to: https://kriesi.at/support/topic/categories-5/?avia_support_contact=avs_66f932b44f1ab8.19832496_1468049
Dear Mike,
Thank you very much for your quick reply. I have tried to illustrate it. Normally it seems to look like in part 1 with Enfold.
As in part 2 it would be great: I found out how to left-align the heading from an earlier post of yours. But I have not been able to find out whether you can also set the categories (in each post) left-aligned via CSS in your theme.
Best regards!
Hey jcombatfitness,
I’m not sure exactly what you are referring to, but you can set text sizes for all screens under Enfold->General Styling->Typography.
Best regards,
Rikard