Hi @Dannyp,
To show a section after a certain amount of time, you have to use some custom coding, for the time being :
1 - Adding the JS code.
Go to custom codes > Custom JS (Body) and paste the following:
<script>
let SHOW_AFTER_SECONDS = 60;
// the total number of seconds to wait before showing the section(s)
document.querySelectorAll(".delay_sec").forEach(x => {
x.classList.add("hidden");
});
setTimeout(showSections, SHOW_AFTER_SECONDS * 1000);
function showSections() {
document.querySelectorAll(".delay_sec").forEach(x => {
x.classList.remove("hidden");
});
}
</script>
2 - Usage:
Now, you can select any element, go to advanced and give it the class ‘delay_sec’, and it will hide any element (section or not) immediately during page loading process, and then unhide it after the number of seconds given in the first line at SHOW_AFTER/