Tagged: , ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #296009

    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 ?

    #296030

    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?

    #296801

    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

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.