I am developing a webpage that has a pin-it button on it. The problem is that when I click on it, the popup window that appears shows images that I don't know where are retrieved from because they are not present in the current page.
Is there a way to specify which images to be available to pin?
I have added this code just before the end of body tag:
<script src="//assets.pinterest.com/js/pinit.js" async defer></script>
And this is how I am placing the button:
<a data-pin-do="buttonBookmark" href="https://www.pinterest.com/pin/create/button/">
<img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" />
</a>
is it possible to do what I need? if it is, how?
Jaime