REDIRECT tumblr blog in theme?

Ask any support / help / issues / problem or question related to TumblingJazz
Post Reply
erichon
Posts: 128
Joined: Sun May 01, 2016 10:12 am

REDIRECT tumblr blog in theme?

Post by erichon »

Hi guys

I had a few lines of code which was pasted in the html of a tumblr theme to redirect to an external site. I cannot find it anymore. Has anybody got the code and can share it here. I remember it was pasted in a certain line of the theme.
User avatar
martin@rootjazz
Site Admin
Posts: 34640
Joined: Fri Jan 25, 2013 10:06 pm
Location: The Funk
Contact:

Re: REDIRECT tumblr blog in theme?

Post by martin@rootjazz »

meta redirect

Code: Select all

<meta http-equiv="refresh" content="5; url=http://example.com/">
JS

Code: Select all

window.location = "http://www.yoururl.com";
with timer

Code: Select all

window.setTimeout(function(){ window.location = "http://www.yoururl.com"; },3000);
all found with 2 seconds from that thing called a "search engine" :-p
Post Reply