Hello Support,
On our Dev Site we have created “Splash” page and added a Fullwidth Slider which has a YouTube video playing.
We have added a “ENTER” button under Caption so that it will take the user to the homepage.
http://pmgl.bydecosta.com/home/
Is there a way to make the YouTube Video play for 5 seconds and then it automatically take the user to the Home Page without the “Enter” Button.
Hope to hear from you soon.
Thanks,
Marcelo
Hey Marcelo!
Try adding a codeblock element to the page and then add this inside.
<script type = "text/javascript">
jQuery(document).ready(function() {
window.setTimeout(function() {
location.href = "insert your URL here";
}, 5000);
});
</script>
Cheers!
Elliott
Thank you so much this is great.
Once again thanks for the great support.
MP