2

I'm using the AddThis share buttons on my site but I have a problem which is the buttons language changed depending on user browser language.

JavaScript Code:

<script type="text/javascript" src="http://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-552ac4af2fde1432" async="async"></script>

HTML code:

<div class="addthis_native_toolbox"></div>

I used this code to set one language but it didn't worked

var addthis_config = {
      ui_language: "fr" 
} 
Jane Smith
  • 71
  • 1
  • 1
  • 4

1 Answers1

0

You should change the button too. Try it:

<a href="http://www.addthis.com/bookmark.php"
    class="addthis_button"><img
    src="http://s7.addthis.com/static/btn/v2/lg-share-fr.gif"
    width="125" height="16" border="0" alt="Share" /></a> 
Helio Bentzen
  • 645
  • 2
  • 12
  • 24
  • Thank you for your help but unfortunately my buttons look like this http://i.imgur.com/gqGD1LV.png not like the image in the code you gave me – Jane Smith Apr 15 '15 at 19:36
  • I need the icons to look like in the image I showed you but in French not like this http://s7.addthis.com/static/btn/v2/lg-share-fr.gif – Jane Smith Apr 15 '15 at 19:55
  • So, look it: http://stackoverflow.com/questions/19123091/setting-language-for-addthis-share-buttons – Helio Bentzen Apr 16 '15 at 01:15