• Resolved limbaccio

    (@limbaccio)


    Hello there,
    I wonder if it’s possible to remove the link to the post, in the post blocks like grid, carousel, masonry ecc. Maybe through some hook?
    Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Team Brainstorm Force

    (@brainstormteam)

    Hey @limbaccio ,

    Thank you for reaching us out.

    Here is a filter to change the link from post blocks.

    add_filter( 'uagb_single_post_link_grid', function( $url, $post_id, $attributes ) {
    	return 'javascript:void(0);';
    }, 10, 3 );

    This will work for Post Grid. You can replace the uagb_single_post_link_grid to uagb_single_post_link_carousel and uagb_single_post_link_masonry.

    I hope this clarifies your doubts.

    Regards,
    Vrunda Kansara

    Thread Starter limbaccio

    (@limbaccio)

    Thanks a lot!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove link to post’ is closed to new replies.