Hello in which way can i unlink the portfolio’s image?
Thx
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
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