Is there a way to make Pinterest recognize background images?

How to add a class of "pin-pin-data" instead of "data-pin-nopin"? There are images in the slider, but they are all background images, so the contact button is currently not working.

Thank!

+4
source share
1 answer

Pinterest does not recognize background images. If you cannot change them to non-phonic images, perhaps you can use the trick of placing the same set of images on the page, but hide them using styles - Pinterest should see them anyway:

<div style="background-image: url('/path/to/my/image.jpg');">
<span style="display:none;"><img src="/path/to/my/image.jpg" /></span>
</div>
+1
source

Source: https://habr.com/ru/post/1537536/


All Articles