• Resolved link1921u

    (@link1921u)


    Is there a way to delete the featured image only in some categories?

    For example, in the category: “games”

    THANKS!

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi there,

    try adding this PHP Snippet:

    add_filter( 'option_generate_blog_settings', 'lh_custom_search_results_page_settings' );
    function lh_custom_search_results_page_settings( $options ) {
        if ( is_single() && in_category('games') ) {
    	    $options['single_post_image'] = false;
        }
      
        return $options;
    }

    More info on the option_generate_blog_settings filter:

    https://docs.generatepress.com/article/option_generate_blog_settings/

    Adding PHP:
    https://docs.generatepress.com/article/adding-php/

    Thread Starter link1921u

    (@link1921u)

    Hi David! I’m sorry but it’s not working. I don’t know why… I don’t understand PHP very well, I’m still a noob ??

    PDS: The category that i’am using is “Juegos”, like games but in spanish

    • This reply was modified 3 years, 9 months ago by link1921u.
    • This reply was modified 3 years, 9 months ago by link1921u.
    Leo

    (@leohsiang)

    That filter will only work if you are using the premium plugin.

    Would CSS option work for you? Do you want to remove them from both the archives and single posts?

    It would be easier if you can link me to the pages where you want to remove them.

    Let me know ??

    • This reply was modified 3 years, 9 months ago by Leo.
    Thread Starter link1921u

    (@link1921u)

    Hi @leohsiang CSS would be the best option! Only the single posts

    My link: This is the link

    Hi there,

    You can try this CSS:

    body.single .category-juegos .featured-image.page-header-image-single {
        display: none;
    }

    You can change .category-juegos to the category you want this applied on. Example: category-games

    Thread Starter link1921u

    (@link1921u)

    @ejcabquina IT WORKS!!!

    Man… I love you so much!! (no homo) jajaja

    • This reply was modified 3 years, 9 months ago by link1921u.

    Glad it works for you. No problem. ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Delete Featured Image -> Categories’ is closed to new replies.