I've searched help, AddThis status and the twitter account to see if there was a system wide issue or known fix, but could not find one.
I'm trying to add sharing buttons to a new product launch site using custom service selections and the 32x32 style. The site is standard HTML, not a blog, flash or anything fancy. I'm a long time user of AddThis - this is not my first rodeo, but this is a brand new set of buttons and new template with new CSS so perhaps that is part of the problem. Here is the deal, I can't share the url as the product is not yet launched. While testing the code on a hidden url, ALL the buttons show: Twitter tweet this, Google plus, e-mail, and pinterest, but no matter what I do, I can't get the facebook_like button to appear.
I started with the custom selection that included the addthis_32x32_style.
Then I replaced:
<div class="addthis_toolbox addthis_default_style addthis_32x32_style">
<a class="addthis_button_preferred_1"></a>
<a class="addthis_button_preferred_2"></a>
<a class="addthis_button_preferred_3"></a>
<a class="addthis_button_preferred_4"></a>
<a class="addthis_button_compact"></a>
<a class="addthis_counter addthis_bubble_style"></a>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=MYID"></script>
With:
<div class="addthis_toolbox addthis_default_style addthis_32x32_style">
<a class="addthis_button_email"></a>
<a class="addthis_button_facebook_like" fb:like:send="true" fb:like:layout="button_count" fb:like:width="450" fb:like:show-faces="false" fb:like:action="recommend" fb:like:font="verdana"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_google_plusone"></a>
<a class="addthis_button_pinterest_pinit" pi:pinit:media="http://MYDOMAIN.com/path/IMAGE.jpg" pi:pinit:layout="horizontal"></a>
</div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=MYID"></script>
The above produces all buttons/results needed except any facebook data or button display. If I swap addthis_button_facebook_like for addthis_button_facebook the 32 pxl button will appear so the the rest of the code appears fine. Why would the like version not display?
FYI:
This appears before my opening head tag:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://ogp.me/ns/fb#" xmlns:fb="http://www.facebook.com/2008/fbml">
Thank you for your help!