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

    Hello in which way can i unlink the portfolio’s image?
    Thx

    #1061192

    Hey andreamangialardo,

    Please add the following to the bottom of functions.php:

    function remove_masonry_link(){
      ?>
      <script>
        jQuery(window).load(function(){
        jQuery('#top a.av-masonry-entry').removeAttr('href');
        });
      </script>
      <?php
      }
      add_action('wp_footer', 'remove_masonry_link');

    Best regards,
    Jordan Shannon

    #1061193

    Hey andreamangialardo,

    Please add the following to the bottom of functions.php:

    function remove_masonry_link(){
      ?>
      <script>
        jQuery(window).load(function(){
        jQuery('#top a.av-masonry-entry').removeAttr('href');
        });
      </script>
      <?php
      }
      add_action('wp_footer', 'remove_masonry_link');

    Best regards,
    Jordan Shannon

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