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 have a personal page (not a cms) where I want to insert multiple sharethis plugin But it seems that code is setted only for one in the page

code into HEAD:

<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "c980sss5aeb6640f"}); </script>

code into body:

<span class='st_sharethis' displayText='ShareThis'></span>
<span class='st_facebook' displayText='Facebook'></span>
<span class='st_twitter' displayText='Tweet'></span>
<span class='st_linkedin' displayText='LinkedIn'></span>
<span class='st_email' displayText='Email'></span>

...how can I set multiple in your opinion?

The problem is that I want that every group of share buttons will be referred to a different post. I have different post in my page and I want that everyone has a sharethis group of icon like that and that they will be referred to a specific url

share|improve this question

2 Answers

up vote 5 down vote accepted

Ok i found it by myself

this is the answer:

<span class='st_sharethis' st_title='<%= scoop.title; %>' 
      st_url='<%= scoop.url; %>' displayText='ShareThis'></span>
<span class='st_facebook' st_title='<%= scoop.title %>' 
      st_url='<%= scoop.url; %>' displayText='Facebook'></span>
<span class='st_twitter' st_title='<%= scoop.title %>' 
      st_url='<%= scoop.url; %>' displayText='Twitter' ></span>
<span class='st_pinterest' st_title='<%= scoop.title %>' 
      st_url='<%= scoop.url; %>' displayText='Pinterest' ></span>
<span class='st_email' st_title='<%= scoop.title %>' 
      st_url='<%= scoop.url; %>'    displayText='Email'></span>
share|improve this answer

This code is working for me.

http://jsfiddle.net/zxg59/

I would just duplicate the code in the body, but not the script tags in the head.

share|improve this answer
Also, I don't think that it is a big deal in this case, but I would not publish my API key for a service on a public forum :) – David Faux Feb 16 '12 at 0:24
Hi David, tx for your answer but, it's a fake api key ;) The problem is that I want that every group of share buttons will be referred to a different post. I have different post in my page and I want that everyone has a sharethis group of icon like that and that they will be referred to a specific url... – Nunzio Fiore Feb 16 '12 at 8:50

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.