Celil Yaman
Junior Member
- Feb 24, 2019
- 108
- 20
Hi, the solution is to briefly block the pinterest bots that visit your site. You should do this from code instead of robots.txt. Some friends decided to sell a single line of code for high amounts, so we decided to implement a free sharing and automated solution. If you wish, you can apply your own solution with the idea we provide or you can include your site in our system free of charge through the system can make our bot.
Manuel Solution:
This line of code on your wordpress site, edit the theme page, select header.php and add it to the top.
Warning: By applying this solution, the problem of pin deletion is improved, but we did not experience any problems in the future which could cause different problems, but that does not mean that this problem will not occur. Please be aware of this and apply the solution. If we find alternative solutions, we will share them for free.
Manuel Solution:
PHP:
<?php if(strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'pinterestbot')) { header('HTTP/1.0 404 Not Found'); die(); } ?>
Warning: By applying this solution, the problem of pin deletion is improved, but we did not experience any problems in the future which could cause different problems, but that does not mean that this problem will not occur. Please be aware of this and apply the solution. If we find alternative solutions, we will share them for free.