Can anybody help me with Tumblr?
The theme I’m using posts 4 or 5 twitter statuses through on the page, but it’s ceased to have function. In the main HTML body, I have managed to update the API link:
{block:IfTwitterUsername}
{/block:IfTwitterUsername}
But I’m not sure if that’s right, and I think the script with it needs to be updated but I’m not sure what to change:
function twitterCallback2(twitters) {
var statusHTML = [];
for (var i=0; i<twitters.length; i++){
var username = twitters[i].user.screen_name;
var status = twitters[i].text.replace(/((https?|s?ftp|ssh)://[^"\s<>]*[^.,;’">:\s<>)]!])/g, function(url) {
return ‘’+url+’’;
}).replace(/\B@([_a-z0-9]+)/ig, function(reply) {
return reply.charAt(0)+’’+reply.substring(1)+’’;
});
statusHTML.push(’
’+status+’’+relative_time(twitters[i].created_at)+’
’);
}
document.getElementById(‘twitterfeed’).innerHTML = statusHTML.join(’’);
}
function relative_time(time_value) {
var values = time_value.split(" ");
time_value = values[1] + " " + values[2] + ", " + values[5] + " " + values[3];
var parsed_date = Date.parse(time_value);
var relative_to = (arguments.length > 1) ? arguments[1] : new Date();
var delta = parseInt((relative_to.getTime() - parsed_date) / 1000);
delta = delta + (relative_to.getTimezoneOffset() * 60);
//’+relative_time(twitters[i].created_at)+’
if (delta < 60) {
return ‘less than a minute ago’;
} else if(delta < 120) {
return ‘about a minute ago’;
} else if(delta < (6060)) {
return (parseInt(delta / 60)).toString() + ’ minutes ago’;
} else if(delta < (12060)) {
return ‘about an hour ago’;
} else if(delta < (246060)) {
return ‘about ’ + (parseInt(delta / 3600)).toString() + ’ hours ago’;
} else if(delta < (486060)) {
return ‘1 day ago’;
} else {
return (parseInt(delta / 86400)).toString() + ’ days ago’;
}
}
Can anybody help?