Hello;
I would like to add Tumblr sharing button next to other social sharing buttons in article pages.
Would you please guide me how I can do that ? I couldn’t find any option for that.
in the theme panel —> social networks I have filled tumblr information.
Thank you.
Hello,
Unfortunately there is no option for a thumblr button. It will have to be hardcoded so a bit of coding skills will be required. You can follow this method which involves adding a new linked in button and recreate it for a thumblr button: https://forum.tagdiv.com/topic/social-media-button/
I hope this helps.
Thank you!
Hi Reza,
Unfortunately the theme has no such option. You can maybe find a plugin that has such an option as sharing plugins are the most popular ones on wordpress. I can’t make any suggestions however, you will have to test them out yourself.
This is an older guide, but you could get some ideas from here: https://managewp.com/automatically-share-blog-posts
Thank you!
Hi;
I have a question regarding StumbleUpon share button, I have read about it in forum and already added it in the td-module-single.php.
i added this to php : <su:badge layout=”6″></su:badge>
and this in the custom java script code :
<script type="text/javascript">
(function() {
var li = document.createElement('script'); li.type = 'text/javascript'; li.async = true;
li.src = ('https:' == document.location.protocol ? 'https:' : 'http:') + '//platform.stumbleupon.com/1/widgets.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(li, s);
})();
</script>
as you can see it in our article pages, e.g:http://glossycover.com/the-all-things-glossy-weekly-round-up-ii/
would you please help me to decorate it ? its not in a line with other buttons 🙁 .
I know I have to decorate it by myself with css, but I’m totally new in wordpress and web develop.
if you could help me, I would be great.
Best Regards;
Reza.
Hello,
You can position it in line with the other elements without problems, but you will not be able to make it square as the other topic suggests. The icon comes from javascript and their server. They do not have square icons. sorry. and you cannot change it with css as it is rendered as an iframe.
For positioning you can use this css:
.td-default-sharing iframe{
position:relative;
left:8px;
top:2px;
}
I hope this helps.
Thanks.