• I want to remove the post excerpt from category post lists as well as from home page post lists. I just want to show the post title and featured image. That’s it.

    I want to remove it completely so CSS code will not work for me. I guess to remove it completely, I need to modify the theme’s templates

Viewing 1 replies (of 1 total)
  • Hi @vikral,

    Please try the following CSS code

    /** Blog */
    .blog .entry-content {
        display: none;
    }
    
    /** Category */
    .category .entry-content {
        display: none;
    }

    I hope it will help. Feel free to reach out to us if you have any further queries.

    Kind regards,
    Herman ??

Viewing 1 replies (of 1 total)
  • The topic ‘How To Remove Excerpt from Category Posts and Home Page’ is closed to new replies.