Hi,
in the source code of pages (version 1.4.5) there is a <meta name="pinterest" content="nopin" /> that prevents the images to be pinned.
I cant't find where to remove this meta tag.
The only place where this meta tag is found is in html_meta_tags. But there the pinterest meta is not active.
Nothing also found in template.
Any idea?
Thank You
Walter
Comments
In html_meta_tags.php the options to display or not the pinterest tag is
line 306:
// Social network extras
if(getOption('htmlmeta_name-expires')) { $meta .= '<meta name="pinterest" content="nopin" />'."\n"; } // dissalow users to pin images on Pinterest
So if the meta expires is activated (default it is) the pinterest tag appears.
I think that line 306 is wrong! It should be:
if(getOption('htmlmeta_name-pinterest')) { $meta .= '<meta name="pinterest" content="nopin" />'."\n"; } // dissalow users to pin images on Pinterest
Correcting this line solves the problem.