Skip to content Skip to sidebar Skip to footer

Hyperlink: Like, Reblog, And Follow

Is there a way to just Hyperlink the like, reblog, and follow functions on tumblr? I just want to write my code like this reblog and it work

Solution 1:

As others have suggested; for 'Reblog' link you can do:

<a href="{ReblogURL}" title="Reblog"> Reblog </a>

Then for 'Follow' link you can do:

<a href="http://www.tumblr.com/follow/{name}" title="Follow {name}"> Follow </a>

*If you'll use this in your primary blog theme; to check how it works you have to log out, 'cause you can't follow your primary blog from your same primary blog.

*This way you can not follow/unfollow in one click, like a usual link it'll take you to the follow page and there you can follow or unfollow the user.

As much knowledge i have, for liking tumblr provides only like button, nothing like a text link that you can like/unlike by clicking.

So as you want to use text only, you can direct the link to permalink page where people can like it. By default Tumblr has 'Like' and 'Reblog' button in permalink page.

You can do it something like:

<a href="{Permalink}" title="Like"> Like </a>     
You should use the above inside {block:Posts} and {/block:Posts}. 

This could be a solution, but it no longer works. Just writing the link, 'cause maybe you can do something from this idea : here (link).

I think that's all i can help for now.


Post a Comment for "Hyperlink: Like, Reblog, And Follow"