Hello Mike,
We had the Default Events template selected. If it makes a difference, we’re using an Enfold child theme. Not sure what else we can do to have the footer display correct and the side bar removed.
Hi StephenStamp,
The Icon element is an element in the Enfold Layout Builder, please create a new page then drag the element in question to your layout.
Best regards,
Rikard
Dear Support Team
I have just carried out the ENFOLD THEME UPDATE for the customer website https://www.chateau-immobilie.de/, everything worked fine in the backend.
Only when checking the website in the FRONTEND, incorrect color settings now appear for all buttons (button line / button across the entire width / …) and this on all pages of the website!
Here is an example for the HOME page:
1. in the third section with the heading “Immobilienvermittlung in der Region….” (see screenshot https://osmosis.de/support/sr/01-buttonscreen.png) the buttons created as transparent are now all displayed in black. ??? The following is set in the backend:https://osmosis.de/support/sr/01-button.png
2. the button at the bottom across the entire width is now displayed in light gray: see screenshot: https://osmosis.de/support/sr/02-buttonscreen.png However, the settings in the backend are as follows: https://osmosis.de/support/sr/02-button.png
It’s the same as in the 2nd example because the color settings are correct!
I have already deleted all caches umpteen times, but this view remains.
What can I do?
Best regards, Diana
Translated with DeepL.com (free version)
on Enfold : where did you load your jQuery in the header or have you set to load jQuery in the footer?
hasClass belongs to jQuery – but if you load jQuery later than there will be this error. Maybe your plugin has the option too – to load the scripts later.
so you are not using the alb element “blog posts” to show the content – but you have declared a page on : Enfold Child – Theme Options : “Where Do You Want To Display The Blog”. – and on Enfold Child – Blog Layout – you set the blog Layout to “Grid Layout”
try in your child-theme functions.php:
add_filter("avf_post_slider_args", function($atts, $context) {
if( $context == "index" ) {
$atts['type'] = 'grid';
$atts['columns'] = 3;
$atts['preview_mode'] = 'custom';
$atts['image_size'] = 'entry_with_sidebar';
}
return $atts;
}, 10, 2);
other contexts in this could be : archive or tag – you can change the columns here too
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
Hey Lin84,
Thank you for the inquiry.
Which blog layout did you select? Did you toggle the Blog Post Date in the Enfold > Blog Layout > Blog Meta Elements section? If you’re using the Grid Layout, please try this css code:
.responsive #top.archive .slide-meta time, .responsive #top.archive .slide-meta time + .slide-meta-del {
display: none;
}
Best regards,
Ismael
Hello Rikard,
Yes, I allow you to deactivate plugins.
Also, you should know that I’ve tested with PHP versions 7.4, 8.0, 8.1 and 8.2 but nothing changes.
I’ve also tested with another template and the result is OK. I really think the problem is with the enfold template.
I look forward to hearing from you.
Hi,
Thank you for the update.
Are you referring to the first section on every page? You can replicate this layout by adding a Color Section element at the very top of the pages and applying a different background image for each page. Please check the documentation below for more info:
// https://kriesi.at/documentation/enfold/color-section/
Best regards,
Ismael
Hey Bruno,
Thank you for the inquiry.
We may need to reset the database before attempting to import the demo. Would that be alright? Have you tried importing the XML files?
// https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo
Best regards,
Ismael
Hey hector1069,
Thank you for the inquiry.
The site already has content and installed plugins when we checked. Is it alright if we reset the database and remove the existing content? We have to do this before manually importing the demo.
If you want to try it yourself, please check this documentation: https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo
Best regards,
Ismael
Hi,
Glad that we could help, you can easily add more pages to the Freelancer demo, you can add new blank pages and add the elements you want or you can duplicate your homepage and change the images and text to suit:

For payments you can use the free version of WooCommerce, and there is a free version of Bookings for WooCommerce – Schedule Appointments, I have not used this plugin but you could try it.
Best regards,
Mike
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 to hear that you find this helpful, thanks to Guenni007 for pointing out that the needed css may not always be loaded correctly, so I added the css into the shortcode and I changed the date attribute to include a time so you can better choose a start date & time. I also added a format attribute so you can choose what will show, like the “Smallest time unit” and “Largest time unit”
So the shortcode to use on the page is now like this: [custom_countup date=”2024-03-01 00:00:00″ format=”weeks,days,hours,minutes,seconds” color=”#000″ background=”#f8f8f8″] you can remove the time units that you don’t want to show.

But please note that if you only show hours & days, the day element will only show up to 7 days even if you have the week element hidden, so you will not see “13” days, the same is for the calculation on all of the elements. This is the new code:
function wp_custom_countup_shortcode($atts) {
$a = shortcode_atts(array(
'date' => '2020-01-01 00:00:00',
'color' => 'black',
'background' => 'white',
'format' => 'weeks,days,hours,minutes,seconds',
), $atts);
$uid = uniqid('countup_');
wp_enqueue_script('jquery');
$formatParts = array_map('trim', explode(',', $a['format']));
$htmlParts = array();
foreach ($formatParts as $part) {
if (in_array($part, ['weeks', 'days', 'hours', 'minutes', 'seconds'])) {
$htmlParts[] = "<span class='av-countdown-cell av-align-center' style='color: {$a['color']};'><span class='av-countdown-cell-inner' style='background-color: {$a['background']};'><span class='av-countdown-time {$part}'></span><span class='av-countdown-time-label'>" . ucfirst($part) . "</span></span></span>";
}
}
$html = "<div id='{$uid}' class='av-countdown-timer-inner'>" . implode("\n", $htmlParts) . "</div>";
$serverTimeAtPageLoad = current_time('timestamp', true) * 1000;
$jsParts = [];
foreach ($formatParts as $part) {
$jsParts[] = "'{$part}': Math.floor(" . ($part == 'weeks' ? "distance / (1000 * 60 * 60 * 24 * 7)" : ($part == 'days' ? "(distance % (1000 * 60 * 60 * 24 * 7)) / (1000 * 60 * 60 * 24)" : ($part == 'hours' ? "(distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)" : ($part == 'minutes' ? "(distance % (1000 * 60 * 60)) / (1000 * 60)" : "(distance % (1000 * 60)) / 1000")))) . ")";
}
$html .= "<script>
jQuery(function($) {
var countUpDate = new Date('{$a['date']}').getTime();
var serverTimeAtPageLoad = {$serverTimeAtPageLoad};
var x = setInterval(function() {
var now = new Date().getTime();
var elapsedTime = now - serverTimeAtPageLoad;
var serverNow = serverTimeAtPageLoad + elapsedTime;
var distance = serverNow - countUpDate;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
var weeks = Math.floor(days / 7);
days -= weeks * 7;
var timeParts = {
'weeks': weeks,
'days': days,
'hours': hours,
'minutes': minutes,
'seconds': seconds
};
Object.keys(timeParts).forEach(function(key) {
$('#{$uid} .' + key).text(timeParts[key]);
});
}, 1000);
});
</script>";
$html .= "<style>
.av-countdown-timer-inner { display: table; width: 100%; table-layout: fixed; }
.av-countdown-cell { display: table-cell; }
body .av-align-center { text-align: center; }
.av-countdown-cell-inner { display: block; vertical-align: baseline; border-style: solid; border-width: 1px; margin: 2px; padding: 20px; }
.av-countdown-time { display: block; font-size: 40px; line-height: 1em; font-weight: 100; text-decoration: none; }
.av-countdown-time-label { display: block; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; line-height: 1.65em; }
@media only screen and (max-width: 767px) {
.responsive .av-countdown-cell-inner { padding: 12px 7px; }
.responsive .av-countdown-time { font-size: 30px; }
.av-countdown-time-label { text-transform: none; }
}
@media only screen and (max-width: 989px) {
.responsive .av-countdown-cell-inner { padding: 10px 10px; }
}
</style>";
return $html;
}
add_shortcode('custom_countup', 'wp_custom_countup_shortcode');
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
Mike
Hi,
I am creating a new website for a friend: http://www.traveltrail.es. And he want that we use “Enfold one page Agency demo”, but we a problem. We are not able to install the demo (I have read that is because we have OVH hosting), and we have to do it manually; but I am not able to do it. Could you help me?
PD. You can delete whatever you need.
Hello,
I have been trying for several days now to install the Enfold Health Demo automatically or manually according to your instructions. I keep getting the error message: cURL error 28: Connection timed out after 10001 milliseconds. I have tried all the different solutions in the forum, but they have not helped.
I have hosted the site at One.com and it is a multisite with a subdomain.
Upon enquiry, One.com told me that it is not possible to increase the execution time on the server.
After nothing worked to install the demo, I tried the import with the standard import plugin of WordPress. I was able to import parts of the demo, but images and special fonts and I assume certain theme settings were not imported.
By chance I found the images of the demo on my server and copied them into the directory
https://asheyoma.dospuntas.ch/wp-content/uploads/sites/4/2024/03/ directory.
However, these are not displayed in the media or in the demo.
I would be very grateful if you could help me to install the demos so that the images, fonts and theme options are displayed correctly. So that I can use this demo as the basis for my homepage.
Thank you very much for your help
Bruno
Hey Arti,
If things are working as expected when the parent theme is active, then the problem is likely coming from your child theme. Please try to remove all your customisations from the child, then add them back one by one to see when the problem starts.
You can export and import theme settings under Enfold->Import/Export.
Best regards,
Rikard
Hi,
Great, I’m glad that Ismael could help you out. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hello, I have a pre-sale question before I purchase another licence for another site I am about to start development on. Is there a method of displaying 4 columns on mobile horizontally one frame at a time with dots or pagination? From previous experience the 4 columns are stacked increasing page length. Example screen grabs in this link https://www.cutwoodjoiner.co.uk/wp-content/uploads/2024/03/Enfold-horizontal-column-scrolling-on-mobile.jpg
Thanks, Kris
Hello, I updated enfold theme and the slider is not showing up now. However, if I activate the parent theme, it works. But all the information like logo is set in the child theme so this has to be activated.
Hi,
Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:
#instagramfeed .container {
max-width: 100%;
padding: 0;
}
Best regards,
Rikard
Hi,
thank you for your help. I can see it is loaded. With this we are done.
As it is not as easy with OVH and the skin as I thought, I’d love to ask an advice. For the moment I need a simple webpage to introduce myself. What I need is just some info about me (I hope I can add some text that will unroll or open in another page with a few sentences – in the Freelancer). If in the future I need to add one-two pages to this one-page demo, Could I easily do it or is it better to load another demo with multiple pages from the beginning?
My webpage will never be complicated – I plan one day to add online payment for the meetings.
Is there any program/plug-in you could recommend that is compatible with Enfold for installing the calendar to set up appointments with clients?
Grateful for your support,
with best regards,
Aleksandra
how add </body> </html> to enfold theme
Since updating Enfold Theme to 5.6.10
it is now impossible to add an image from the library to a post/page from the classic editor only.
Importing an image from the avia builder is OK.
Disabling extensions changes nothing.
Tested with Google Chrome and Safari
Video capture below
https://recordit.co/qeoTiXuZT8
Do you have any idea what the problem is?
Thanks for you time,
but the weird thing is that oneair.es and grupooneair.com are practically the same websites and have the same configuration, none of them has performance tools activated on enfold, but one is having so bad performance.
Ian
Hello dear Enfold Team,
have a look at this page. The desktop logo and the menu have disappeared and only appear when scrolling down. Can this function also be activated for mobile? But only on this one page.
I look forward to hearing from you
Hi,
On my category pages the name of the category is on top:

This is set at Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs

and the date is set at Enfold Theme Options ▸ Blog Layout ▸ Blog Meta Elements

Please note that we ask that each thread stays on a specific topic, this helps other users find solutions based on the opening subject line and helps us as mods assist better. This thread is getting quite long now, for further questions please open a new thread Thank you for your patience and understanding and for using Enfold.
Best regards,
Mike
Hi,
Please try the non-breaking space:


Best regards,
Mike