Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to add a button like the nice one done by ThinkingStiff in the example here ?

That one is designed to be used on Tumblr pages. I'd like to get the same functionality on a page that is outside of Tumblr.

Yes, I already have a method to get the {ReblogURL} and the {PostID} values it needs.

Thanks for your help!

share|improve this question
@ThinkingStiff This one's for you. – user1452893 Jul 6 '12 at 3:53

1 Answer

up vote 0 down vote accepted

Ah, solved myself. Just replace {ReblogURL} and {PostID} in original code:

<div class="my-like" data-reblog="{ReblogURL}" data-id="{PostID}" title="Like"></div>

with the new vars (from whichever method you use to get them) and replace that div.

Example:

<div class="my-like" data-reblog="3Pbn6aNA" data-id="12345678901" title="Like"></div>

Note: Those vars are not a live Tumblr post.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.