well, as a temporary solution (except for removing the pin it button), from reading their code, I believe (not verified) that you could add a part of the <script> call to disable logging, for example ...
<script type="text/javascript" src="//assets.pinterest.com/js/pinit.js" data-pin-do-not-log="true"></script>
This works, but it doesn’t apply to me because I load the script asynchronously and I use the load command, so I did this by copying the pinit.js file locally to the server and changing the part that says
if(avconfig["do-not-log"]||aadoNotLog===true)
to
if(avconfig["do-not-log"]||aadoNotLog===true||true)
it looks like it is doing some kind of log in iframe.
Rodolfo
source share