I've added a Like and share button to the posts footer from my Blog, so that the reader has the option to choose Like or not, only that post . But clicking on Like, I noticed that the button did not share the post , but rather the blog.
Could anyone help me solve this problem? I would like to know how to put a Like and share button that allows the reader to short only that post What are you reading?
The platform used is Blogger. I have some static pages and for these, yes, I would like the option to like these pages. I used code generated from Facebook Developers in Social Pluggins:
<!-- Insere "curtir" e "compartilhar" do facebook -->
<div id='fb-root'/>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/pt_BR/sdk.js#xfbml=1&version=v2.5";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
Código HTML:
<!-- insere o botão "curtir" e o "compartilhar" do facebook -->
<div class="fb-like" data-href="http://enchendoacaixa.blogspot.com.br/" data-layout="button_count" data-action="like" data-show-faces="true" data-share="true"></div>
Thanks in advance!