Automatically scrolls down to the next section after 5 seconds

To make this effect appears on Homepage Only (top section), you can follow these.

#1. First, you need to find ID of Top Section
In my example, it is: section[data-section-id=“67499cf4037b5c5f47baf207”]

#2. Next, use this code to Website Tools > Code Injection > Footer

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
    setTimeout(function () {
        var currentSection = $('section[data-section-id="67499cf4037b5c5f47baf207"]');
        var nextSection = currentSection.next('section');
        if (nextSection.length) {
            $('html, body').animate({
                scrollTop: nextSection.offset().top
            }, 1000);
        }
    }, 5000);
});
</script>

If you have any problems, you can comment, send me an message or email me.