How can I enable a “Pin” feature with my blog? I have the social widgets on the bottom to share, but how can I have people pin my blog ?
I managed to find the plugin: Pinterest “Pin It” Button
However now I have the problem that exists which is the images on the blog are links. How do I deactivate this?
Hi!
Please try adding following code to Functions.php file in Appearance > Editor
function add_custom_script(){
?>
<script>
jQuery(window).load(function(){
jQuery('.big-preview.multi-big>a').removeAttr('href');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
Regards,
Yigit