Hello,
on posts I´ve two kinds of social counters, twitter shows twice and I don´t have an Pinterest account.
How can I repair that? It should be one twitter and one like and one share Button facebook. G+ is OK, Pinterest should be hidden.
And an other question: How can I hide the “more from Autor” Button in releatet Articles?

Thanks
Achim
Hi,
If you want to remove the pinterest and second twitter buttons, you can use this css:
.td-social-pinterest, .td-classic-twitter{
display:none!important;
}
As for the more from author please follow this topic to see both methods how it can be removed:
https://forum.tagdiv.com/topic/how-hidec-from-the-post-more-from-author/
Thank you!
Hi,
It’s a bit more complicated than that upon inspecting the element closer, It comes directly from facebook within an iframe and an iframe cannot be targeted with css. As an alternative you can try to implement a different facebook button like this example: http://screencast.com/t/OegGtb7D
For this design, you have to do a few steps like so:
1) Select your button from this link: I selected small box count with no share option: https://developers.facebook.com/docs/plugins/like-button
2) Press the get code button.
3) Add the first part of code in the header.php file like so: http://screencast.com/t/hVm8S5ifv
4) Use the second code to replace the theme code here: http://screencast.com/t/OfVUbEihz5
5) use this css to position it properly:
.td-classic-sharing li{
margin-left: -15px!important;
}
.td-classic-sharing{
vertical-align: top!important;
}
I hope this helps.
Thank you!