Hi there! So I saw a post with code for a timed redirect as shown below. It works when I use the time suggested…but when I increase the time to say (20 minutes) it doesn’t redirect. Is it too long? What am I doing wrong? It’s ns right? So for 20 minutes it should be 1200000000000 right?
import wixLocation from ‘wix-location’;
import wixWindow from ‘wix-window’;
$w.onReady( function () {
setTimeout( function () {
wixLocation.to (’ https://www.yoursite.com ');
}, 2500);
});