Remove Thumbnail I am using divi theme
-
I’ve already read a topic to remove the Thumbnail in a single event, I remove the Thumbnail with this code, but its remove the logo organizer too (I’m using divi theme)
Note: in https://warocol.com/event-venue/ggrgrgr/ and https://warocol.com/event-organizer/waro-colombia/ its happening the same.
/* Remove event thumbnail from header of signle event page */ function wordpress_hide_feature_image( $has_thumbnail, $post, $thumbnail_id ) { return is_singular( 'event_listing' ) ? false : true; } // add the filter add_filter( 'has_post_thumbnail', 'wordpress_hide_feature_image', 10, 3);Thanks for the responses.
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Remove Thumbnail I am using divi theme’ is closed to new replies.