I'm trying to figure out why tumblr is not showing me the iframe#tumblr_controls
(which holds the follow
, dashboard
or customize
(if logged in) buttons) (view pics below).
I am using a theme I purchased directly from tumblr and have customized it heavily, there are no html or javascript errors.
I've found a few answers to style the following buttons, but I don't see them in my div.
I dont see any of the two buttons above on tumblr, any ideas why its not showing?
I also have another issue where I am using the following template tags and HTML to render tumblr share buttons, but the buttons are not clickable (they are iframes with divs inside).
<!-- Im including share buttons like this, but the "Like btn" is not clickable ->
<div id="tumblr-share">
<ul class="tumblr-action">
<li class="reblog">{ReblogButton size="20" color="grey"}</li>
<li class="like">{LikeButton size="20" color="grey"}</li>
<li class="notes"><a href="{Permalink}">{NoteCount}</a></li>
</ul>
</div>
Any ideas why my tumblr share buttons and follow, dashboard & customize buttons are not showing in the top right corner like all other blogs?
After some researching and asking around (thanks to @PHPology), I figured out that this was an issue because my blog was marked as "private" (password protected) in tumblr settings.
Make sure your blog is not password protected, else the buttons will not show/work as expected.
Also ensure your HTML is valid and correct and there are no javascript errors (tumblr loads these buttons in dynamically via javascript after page load - Javascript errors will stop the execution of this script and others).
A great post here on how to apply hover effects to the like and reblog buttons within the iframe.