Hi,
It looks like that’s because the featured banner is pulling the whole blog posts.
It’ possible to use ShareThis with out the plugin, This will give you a lot more control about where the button does and does not show up.
Note, if you want to use the counter button you need to switch the code in step one with the the code you put in your plugin.
Here is the simplest example of implementing ShareThis on a WordPress
blog without using the ShareThis plugin.
1) In the Header template, just before </head>, add the ShareThis JavaScript library.
<script type=”text/javascript”
src=”https://w.sharethis.com/button/sharethis.js#publisher=00000000-0000-0000-0000-000000000000&type=website”></script>
(You will have to replace the 00000000-0000-000…. part with your sharethis publisher ID. If you don’t know your publisher ID you can figure it out by going to https://sharethis.com/publishers/getbutton and clicking on the “get the code” button. The code you will be given is the same as the code above, just with your publisher ID. Also note that you must be logged into your ShareThis account to get the code.)
2) In the Main Index template, inside the post loop, place the following code where you want the ShareThis button to appear.
<script type=”text/javascript”>
var shared_object = SHARETHIS.addEntry({
title: “<?php the_title(); ?>”,
url: “<?php the_permalink(); ?>”
});
</script>
3) In the Single Post template, place the following code where you want the ShareThis button to appear.
<script type=”text/javascript”>
var shared_object = SHARETHIS.addEntry({
title: “<?php the_title(); ?>”,
url: “<?php the_permalink(); ?>”
});
</script>
Hope this helps,
–ShareThis support