Dear Team,
My site is finally live and looks and runs pretty well, using the Minimal portfolio design of the Enfold theme:)
I have only one weird problem with loading times. The main pages load fine, but the internal pages like portfolio items and blog posts sometimes take around 6 seconds to load on some browsers.
Here’s a screen recording on Windows 10 where you can see examples on Chrome, Firefox and IE.
https://drive.google.com/file/d/1DJKmwQSjAmnUy0Rc02M3aNr_sGWHp01g/view?usp=sharing
– On Chrome and Firefox very often the internal pages take around 6 seconds to load.
– On IE those pages load in 1-2 secs almost without exception.
– The BG and EN versions are separate multisite sites – on the BG version the Lazy loading is disabled in the theme options, on the EN version it’s enabled, but this doesn’t make much difference in my tests.
– When a portfolio page loads for 6 seconds – it shows a spinning wheel for 6 seconds then displays everything at once; when it loads for 1-2 seconds – the main content is shown almost immediately, and the small gallery photos load a bit later very smoothly (this is the desired behavior).
– I don’t use any caching plugin, only Cloudflare with Standard Caching level.
– I did a test on a Mac’s Safari as well – it behaved like IE, with consistent low loading times for all pages.
Could you please investigate why this is happening? Maybe there is some script in those pages which behaves differently in different browsers?
Thanks a lot in advance!
Best regards,
Dessi
it works for blog alb pages and for blog page ( set on enfold-child – theme options – “And where do you want to display the Blog?” ) if this is a page showing posts ( not portfolios )
So let this options free ( not selected ) – then it will work everywhere
PS : i do not know why ismaels code does work this way – i got that on the beginning too – that only one of those tags is shown – and the rest not. ( if i insert it now – there are all tags – but in a line – don’t know if he changed the code above )
All queries match mine (or vice versa). Also the each loop should work. I only added some surrounding containers, a separator and a condition to be fullfilled – and the filter to use to place the tags on a different location.
you can change his code the way i did with some surroundings etc. and that condition.:
function new_avf_post_slider_entry_excerpt($excerpt, $prepare_excerpt, $permalink, $entry ) {
$tags = get_the_tags($entry->ID);
$tags_output = "";
if('blog-meta-tag' == avia_get_option('blog-meta-tag') && $tags ){
$tags_output .= '<div class="post-tags" style="display:block"><p class="post-tags-inner">';
foreach ( $tags as $tag ) {
$tags_output .= '<a href=" '.get_tag_link( $tag->term_id ).' ">';
$tags_output .= '<strong> '.$tag->name.' </strong>';
$tags_output .= '</a>' ;
if(next($tags)){
$tags_output .= '<span class="text-sep"> | </span>' ;
}
}
$tags_output .= '<br></p></div>';
$excerpt = $tags_output . $excerpt;
};
return $excerpt;
}
add_filter('avf_post_slider_entry_excerpt', 'new_avf_post_slider_entry_excerpt', 10, 4);
you got the choice
Hi,
Great, I’m glad that Mike could help you out. 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
Hey eXtremeHosting,
Which version of the theme are you running? If it’s not 4.9.2.3, then please update to that: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update. If you should need any further help, then please post admin WordPress login details in private, and let us know how to reproduce the problem.
Best regards,
Rikard
Sorry – link here
It’s quite bespoke front end,but the footer has always been there and working fine through the native Enfold theme.
Hi,
Your security plugin might be blocking the update, please try to install and configure this plugin: https://envato.com/market-plugin/
Adding columns in the toggles is not possible with the Layout Builder, but you can try to manually copy shortcodes if you enable debug mode: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode
Best regards,
Rikard
Error Details
=============
An error of type E_ERROR was caused in line 3767 of the file %SRCDIR%/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-element-templates.php. Error message: Uncaught TypeError: Argument 1 passed to aviaElementTemplates::set_locked_attributes() must be of the type array, string given, called in %SRCDIR%/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.php on line 1062 and defined in %SRCDIR%/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-element-templates.php:3767
Stack trace:
#0 %SRCDIR%/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.php(1062): aviaElementTemplates->set_locked_attributes()
#1 %SRCDIR%/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.php(1106): avia_sc_slider_full->get_element_styles()
#2 %SRCDIR%/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1142): avia_sc_slider_full->shortcod
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
Bonjour,
Je viens de désactiver le cache de mon serveur.
Je n’ai pas modifier l’emplacement du fichier enfold8child.css (voir photo).
Cordialement
Enfold says I#m using the actual version of the theme…
Problem is still the same. If an img is the alst Element of toggle-content, it gets cut, because the hight of the wrapping element or whatelse isn’t right.
Please do also answer my second question: hwo to use (2 or 3) columns in toggle content?
Good morning guys,
I have continuous problems with the Enfold creative Studio theme despite having installed the latest version of the theme and WordPress.
Very often, when I try to edit any content on the home page (the last time it happened simply by trying to insert the search button, or simply by entering a different font size value) the elements on the top of the home page, although correctly present and displayed admin-side, are no longer displayed online. Likewise, the menu also stops working. The only way to fix this is to load a backup version of the site and clear the cache. What’s wrong with it? The theme is very nice but I can’t be afraid to change anything to not have this inconvenience. Many thanks for the help
and if you like to show this only if you have set on enfold-child – blog layout – blogpost meta elements : Blog Post Tags to show.

function new_avf_post_slider_meta_content($meta_content, $entry, $index, ) {
$tags = get_the_tags($entry->ID);
$tags_output = "";
if('blog-meta-tag' == avia_get_option('blog-meta-tag') && $tags ){
$tags_output .= '<div class="post-tags" style="display:block"><p class="post-tags-inner">';
foreach ( $tags as $tag ) {
$tags_output .= '<a href=" '.get_tag_link( $tag->term_id ).' ">';
$tags_output .= '<strong> '.$tag->name.' </strong>';
$tags_output .= '</a>' ;
if(next($tags)){
$tags_output .= '<span class="text-sep"> | </span>' ;
}
}
$tags_output .= '<br></p></div>';
$meta_content = $tags_output . $meta_content;
};
return $meta_content;
}
add_filter('avf_post_slider_meta_content', 'new_avf_post_slider_meta_content', 10, 4);
Of course, you can also use other separators there …
if(next($tags)){
$tags_output .= '<span class="text-sep"> , </span>' ;
}

https://webers-testseite.de/blog-seite/
Fred
Thanks for the details.
I have contacted Themeforest to give me the email address attached to the Themeforest username (that I can see in the Enfold Child Theme Options panel). That will help me to contact that person if it possibly still exists.
Awaiting their answer.
Hi,
Please try to follow this in order to register your theme license, and to generate a token for the theme backend: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
Hey Fred,
We don’t have any purchase records unfortunately. Who bought the theme license for you? I would recommend that you try to reach out to that person first of all.
Once you have access to the theme files, then the update to 4.9.x 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 use a plugin to upload the theme zip file: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
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
FredGuest
Hello,
I cannot register on your support website as I cannot retrieve the purchase code.
On behalf of my client, I’d like to recover the license details (purchase code and email address) used by the original Themeforest user which doesn’t possibly exist anymore.
The website is running Enfold v4.4.1 on PHP v7.3. I am unable to update the theme from the WP console. The only way is to download the update from Themeforest.
Also, upgrading PHP to anything above v7.3 on the current Enfold v4.4.1 triggers errors on the frontend for visitors.
Thanks for your input.
Hi,
Great, I’m glad that Mike could help you out. 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 there,
Recently, probably since Update to WP 6.0 and enfold 4.9.2.3:
A Portfolio Category has for Example 4 Portfolio.
When you click on the category, however, only 1 portfolio is displayed, obviously always the last one saved. All category assignments have been checked and are ok.
The problem currently exists in all portfolio categories.
solf
Hi
I have a woo commerce issue with the enfold theme
when you try to use the cart it gives a fatal error
this is what my techies said
“Could you kindly contact the developer to check the below error on their end.
Error log for reference:
——
[30-May-2022 01:49:03 UTC] PHP Warning: Use of undefined constant ’__return_false’ – assumed ‘’__return_false’’ (this will throw an Error in a future version of PHP) in /home/macadamiaoils/public_html/jindilli1/wp-content/themes/jindilli/functions.php on line 14
[30-May-2022 01:49:06 UTC] PHP Warning: Use of undefined constant ‘use_block_editor_for_post’ – assumed ‘‘use_block_editor_for_post’’ (this will throw an Error in a future version of PHP) in /home/macadamiaoils/public_html/jindilli1/wp-content/themes/jindilli/functions.php on line 14
[30-May-2022 01:49:06 UTC] PHP Warning: Use of undefined constant ’__return_false’ – assumed ‘’__return_false’’ (this will throw an Error in a future version of PHP) in /home/macadamiaoils/public_html/jindilli1/wp-content/themes/jindilli/functions.php on line 14
——-“
Hey fredirain,
Thank you for the inquiry.
Those are custom element templates in the Advance Layout Builder. Where did you actually see these URLs? Please provide a screenshot or post the login details in the private field.
// https://kriesi.at/documentation/enfold/custom-element-templates/
Best regards,
Ismael
Hi,
Sorry about that. For some reason, I integrated a WordPress function in a Javascript file, must have been confused for a moment. Please look for the same line, then replace it with the following code.
$scoll_target_offset = 100;
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){
$scoll_target_offset = 10;
}
$('html:not(:animated),body:not(:animated)').animate({scrollTop: scoll_target - $scoll_target_offset},200);
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after modifying the file.
Thank you for your patience.
Best regards,
Ismael
Hi amyteslin,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
@media only screen and (max-width: 767px) {
#top .avia-buttonrow-wrap .avia-button {
display: block;
max-width: 280px;
margin-left: auto !important;
margin-right: auto !important;
}
}
Hope it helps.
Best regards,
Nikko
Hi Hula Slim,
We’re happy to hear that :)
Thanks for using Enfold and have a great day!
Best regards,
Nikko
Hey Veronika,
Thank you for the inquiry.
You can use any elements such as magazine, blogs posts or masonry elements to display related entries. Just select the same category as the current post and make sure to set Content > Filter > Offset Number to the second option to disallow duplicate post.
You can also use this filter in the functions.php file.
/*
Removing duplicate blog post (Blog post element must not have offset activated)
*/
add_filter('avia_post_slide_query', 'enfold_customization_query_custom');
function enfold_customization_query_custom( $query ) {
global $post;
if ( is_single() ) {
$query['post__not_in'] = array($post->ID);
}
return $query;
}
Best regards,
Ismael
Hey Mike1050,
Thank you for the inquiry.
Which specific cookies are you trying to block? You can adjust the Default Cookie Behavior settings in the Enfold > Privacy & Cookies > Cookie Handling panel. The third and fourth option in the behavior settings should disable all external cookies including maps, youtube and more.
Best regards,
Ismael
Hello, I moved my site over from staging to live, when I moved it over,the live site is not display the advance layout editor, the staging site is.
I checked all options, checked everything and its all there. except its not working
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,
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 Mabludo,
There should not be anything special that you need to do, your license should not be registered to a specific domain, but it can’t be checking for updates from multiple domains, so as long as you only have it installed on one domain you will be fine.
If you have built a site for a client on your domain with your license, you can import it to your client’s domain and remove your license token from Enfold Theme Options ▸ Theme Update ▸ Enter a valid Envato private token then have your client purchase a license and enter their license token instead.
Best regards,
Mike