Addthis --> Facebook like button ?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
Dear All,

Any idea on the way I can add the facebook like button to the AddThis toolboox?

As mentionned here http://www.addthis.com/gallery/toolbox-facebook-like, I have just changed slightly the nopCommerce code from this

<!-- AddThis Button BEGIN --> <a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;username=nopcommerce"><img src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=nopcommerce"></script> <!-- AddThis Button END -->

to this

<!-- AddThis Button BEGIN --> <a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;username=nopcommerce"><img src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a><a class="addthis_button_facebook_like"></a>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=nopcommerce"></script> <!-- AddThis Button END -->

But it does not seem to work.. Any idea?

Thanks !

++

MT
13 years ago
nobody?
13 years ago
Hi i want to do the same any progress??
13 years ago
I'm having similar problems.

I've tried AddThis and the original Like Button, none of them had worked.

Try post this url at facebook form.

http://www.neuronik.com.br/produtos/193-filmadora-memoria-flash-dcr-sx44s-handycam-sony.aspx

It detects the title, link, first picture, but it doesn't submit.

It's only happening with nopCommerce sites I've made. =\
13 years ago
no one???
13 years ago
<a name="fb_share"></a>  <script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share"          type="text/javascript"> </script>

Share button is above.  It is alot better than "like"

"like" doesn't show pictures of products

Check my site for facebook implementation

www.happycoral.com
13 years ago
BTW

You can just add this code in "all settings"
13 years ago
Simple, login to facebook and browse the developers section. there you will find a simple iframe code to add anywhere to your site.

emample of my site: http://commercialbargains.com
12 years ago
I found this code on another website that had a "like" button.
So I put it on my Product pages to see what would happen :

<a target="_Facebook" href="http://www.facebook.com/sharer.php?u=http://www.YourDomainName.com/">
<img alt="Facebook" src="<%=Page.ResolveUrl("~/images/fb-button.gif")%>" /></a>

When you click Like button, the person is taken directly to a page that
lets them post your Web site page right to their wall.

You just need to add the "Like" button to images folder.

I am later going make it so that the product page they are on is the page that is posted on their wall.
I'll need to do something like this :

href="http://www.facebook.com/sharer.php?u=http://www.YourDomainName.com/ + ProductPage.aspx ">
12 years ago
<iframe src="http://www.facebook.com/plugins/like.php?app_id=[AUTOMATICALLY GENERATED NUMBER]&amp;href=[DOMAIN NAME]/product.aspx?productid=<%=this.ProductId%>&amp;send=false&amp;layout=button_count&amp;width=90&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=tahoma&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:90px; height:21px;" allowTransparency="true"></iframe>

Go to facebook like page, get the like button, but replace the href=www.example.com with your
href=http://yourdomain.com/product.aspx?productid=<%=this.ProductId%>

or you may need to use (depending on the page)

<%#Eval("ProductId") %>

But that should let them like the specific page for an item, rather than the whole page.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.