I went to the page you referred to and found this code
- Code: Select all
var addthis_config = {
services_compact: 'email, facebook, twitter, more',
services_exclude: 'print'
}
Here is the code from my ShopSite back office.
- Code: Select all
<a href="http://www.addthis.com/bookmark.php?v=250&pub=xa-4a78769c7cc46f3b" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/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?pub=xa-4a78769c7cc46f3b"></script>
I inserted the code from the addthis site into the code from ShopSite placing it just before the 'src=' to come up with this:
- Code: Select all
<a href="http://www.addthis.com/bookmark.php?v=250&pub=xa-4a78769c7cc46f3b" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a>
<script type="text/javascript" var addthis_config = { services_compact: 'email, facebook, twitter', services_exclude: 'print' }
src="http://s7.addthis.com/js/250/addthis_widget.js?pub=xa-4a78769c7cc46f3b"></script>
I published my store and when I hover over the addthis link all I see is Email, Facebook, Twitter and not all the other options that were there before.
So you just need to go to the addthis site and find values you want to include and add them to the ShopSite code. There are probably similar optons for what displays when you click on the link but I'll leave that for and exercise for you to try.