• Closed
  • Ri Ma
    Spectator
    November 23, 2017 at 1:18 pm #35417

    Hi

    I have set my blog home page to display excerpt instead of a full blog post. However the catagories and the comment count is still displayed underneath every post excerpt. How do I disable this!? I just want a read more button.

    Thanks
    Rishi

    vaibhav
    Spectator
    Posts: 287
    November 24, 2017 at 6:36 am #35425

    Hi,

    Check below theme options
    Theme Options -> Blog -> Posts -> Post meta header placement ( Select disable option )

    Thank you

    Ri Ma
    Spectator
    Posts: 3
    November 24, 2017 at 2:22 pm #35431

    Hello Vaibhav,

    Thanks for taking time to reply. The option you mentioned disables the Authorname, date etc whcih appears at the top of the post but not option that gets displayed below the exceprt like the “leave a comment” or the catagories the post comes under!

    Thanks

    vaibhav
    Spectator
    Posts: 287
    November 25, 2017 at 6:23 am #35441

    Hi,

    Add custom css to remove the categories and comment under post excerpt.
    .entry-footer .entry-categories,
    .entry-footer .comment-count {
    display: none;
    }

    Thank you

    Ri Ma
    Spectator
    Posts: 3
    November 25, 2017 at 8:29 pm #35458

    Thank You Vaibhav. It helped me disable the catagories and comments under the post excerpt but unfortuantely the categories are hidden under Single post too! The comments are Ok on the single post as it appears on the header for Single post.

    Any help?

    vaibhav
    Spectator
    Posts: 287
    November 27, 2017 at 6:59 am #35499

    Hi

    Add custom css for display category in single post
    .single-post .entry-footer .entry-categories {
    display: block;
    }

    Thank you