remove link from featured image
-
Hey,
I tried adding this filter:
function tribe_remove_featured_image_link( $link ) {
if ( tribe_is_list_view() ) {
$link = false;
}
return $link;
}
add_filter( ‘tribe_event_featured_image_link’, ‘tribe_remove_featured_image_link’ );That didn’t work for me.
Any help with removing the featured image link completely?
Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘remove link from featured image’ is closed to new replies.