Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just added a new buttons for sharing contents of my posts on blogger using this code that I installed afer <data:post.body/> :

    <!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style addthis_16x16_style">
<a class="addthis_button_facebook" title="Facebook"></a>
<a class="addthis_button_twitter" title="Twitter"></a>
<a class="addthis_button_email" title="e-mail"></a>
<a class="addthis_button_print" title="Imprimer"></a>
<a class="addthis_button_googlebuzz" title="Buzz"></a>
<a class="addthis_button_google" title="Google"></a>
<a class="addthis_button_favorites" title="Ajouter aux favoris"></a>
<a class="addthis_button_compact"></a>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4dedda0c245832a7"></script>
<!-- AddThis Button END -->

The problem is that when I want to share it on facebook, Description show other element like a sort of an 'html' code on it ! I tried to fix with the previous questions posted here but it didn't work ! Here you can see it when you share : http://scheissemag.blogspot.com/2011/06/this-summers-faux-pas.html

share|improve this question
Which button on the page? – Matt Ball Jun 22 '11 at 18:09
@matt ball Faceebook sharing under the post ! – purplerain Jun 22 '11 at 19:20

1 Answer

up vote 1 down vote accepted

In the <head /> tag, add this:

 <meta property="og:description" content="Your description"/>

Alternatively, you can set this:

<meta name="description" content="Your description" /> 

You should be setting the second one anyways for SEO purposes. If you implement this and you don't see the change apply, use Facebook's linter tool to refresh their cache.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.