Title: Remove Tumbnails
Last modified: September 3, 2020

---

# Remove Tumbnails

 *  Resolved [marleness](https://wordpress.org/support/users/marleness/)
 * (@marleness)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/remove-tumbnails/)
 * Hi all
 * how do I remove Thumbnail images from the single event pages (here = Yogavivo).
   If I dont upload any Thumbnail/Logo, there will just be an icon that shows that
   something is missing.
 * Thanks,
    Marlene
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fremove-tumbnails%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  [Priya Goenka](https://wordpress.org/support/users/priyagoenka/)
 * (@priyagoenka)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/remove-tumbnails/#post-13355587)
 * Hi,
 * Please use the following shortcode in the functions.php file at your theme side:
 *     ```
       /* 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);
       ```
   
 * Regards
    Priya
 *  Thread Starter [marleness](https://wordpress.org/support/users/marleness/)
 * (@marleness)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/remove-tumbnails/#post-13375360)
 * Hi,
 * I tried this but what happened was, that the thumbnai/logo in the bottom disappeared
   and instead there was an icon for missing images. The tumbnail/logo in the top
   of the pages was still there.
 * Any other ideas?
 * Best,
    Marlene
 *  [Priya Goenka](https://wordpress.org/support/users/priyagoenka/)
 * (@priyagoenka)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/remove-tumbnails/#post-13382024)
 * Hi,
 * By default WordPress themes are adding thumbnail on a single page using this 
   filter
    `post_thumbnail_html` It looks like your theme is adding the author box
   from his end. So I would request you to ask your theme author to provide settings
   to disable the image injection on each single post or provide a filter to disable
   on specific post type.
 * Also try this if works for you
 *     ```
       function wordpress_hide_feature_image( $html, $post_id, $post_image_id ) {
         return is_single() ? '' : $html;
       }
       // add the filter
       add_filter( 'post_thumbnail_html', 'wordpress_hide_feature_image', 10, 3);
       ```
   
 * Regards
    Priya
    -  This reply was modified 5 years, 9 months ago by [Priya Goenka](https://wordpress.org/support/users/priyagoenka/).
 *  [Hitesh Makvana](https://wordpress.org/support/users/hiteshmakvana/)
 * (@hiteshmakvana)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/remove-tumbnails/#post-13382162)
 * Hi [@marleness](https://wordpress.org/support/users/marleness/)
 * If you don’t want to check too much things and just want to hide using CSS then
   please add the following css to your child theme
    `.single-post-wrap .wp-post-
   image{display:none}`
 * Thank you

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

The topic ‘Remove Tumbnails’ is closed to new replies.

 * ![](https://ps.w.org/wp-event-manager/assets/icon-256x256.png?rev=1622826)
 * [WP Event Manager – Events Calendar, Registrations, Sell Tickets with WooCommerce](https://wordpress.org/plugins/wp-event-manager/)
 * [Support Threads](https://wordpress.org/support/plugin/wp-event-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-event-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-event-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-event-manager/reviews/)

 * 4 replies
 * 3 participants
 * Last reply from: [Hitesh Makvana](https://wordpress.org/support/users/hiteshmakvana/)
 * Last activity: [5 years, 9 months ago](https://wordpress.org/support/topic/remove-tumbnails/#post-13382162)
 * Status: resolved