Redirect code on LCD page
Content
I'm looking for redirect code that will work with LearnCenter Design pages. I've tried inserting a meta tag but it gets wiped out from both the page source and if I use it on a page template. I've also tried using a JS redirect as part of a page template but that doesn't seem to work either. I'm trying to jump from one LCD page to another after about a 5 to 10 second pause.
What I've tried so far ...
<meta http-equiv="Refresh" content="5; url=https://tgh.learn.com/Page/170/!ldcsessionid!/">
<script>
setTimeout(function() {
window.location.href = "/Page/170/!ldcsessionid!/";
}, 5000);
</script>
0