Hello, I’m trying to automatically redirect this page to the homepage after 7 seconds: https://www.aquamarseafood.com/aquamar-net-is-aquamarseafood-com/
How do I do that?
TY
Hey Dean,
Please edit the page in Cornerstone and add this to the custom JS area:
(function($){
window.setTimeout(function () {
location.href = "https://www.aquamarseafood.com";
}, 7000);
})(jQuery);

Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.
Hope this helps.
that worked. thanks Jade.
You are most welcome. 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.