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.
[ProductTitle]
[ThumbnailImage]
  <a href="http://pinterest.com/pin/create/button/?url=lerivinos.com&media=lerivinos.com" 
     class="pin-it-button" 
     count-layout="horizontal">
  Pin It
  </a>
<script type="text/javascript" src="http://assets.pinterest.com/js/pinit.js"></script>
[OurPrice]
[AddToCart]
share|improve this question
1  
Welcome to StackOverflow! So... do you have a question or something? Please have a look at stackoverflow.com/faq (or other questions) in order to phrase a question that can also be answered with the given information. – Quasdunk Mar 13 '12 at 22:25

2 Answers

your sample code doesn't have the img link which pinterest give you in the code snippet.

Assuming you mis-copied and omitted it, I had the same problem because pinterest give you this:

<img border="0" src="//assets.pinterest.com/images/PinExt.png" title="Pin It" />

I had to add http: to the src to get it to work, ie:

<img border="0" src="http://assets.pinterest.com/images/PinExt.png" title="Pin It" />

Hope that helps.

share|improve this answer

The media parameter of your pintrest url should point at your image file, like so:

<a href="http://pinterest.com/pin/create/button/?url=lerivinos.com&media=https://www.google.com/images/srpr/logo3w.png" 
     class="pin-it-button" 
     count-layout="horizontal">
  Pin It
  </a>

From the pintrest goodies page

share|improve this answer

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.