How to remove Blog Date/Author and # of Comments

Discussion in 'Local Business WordPress Theme' started by bwdaugherty, May 27, 2013.

  1. bwdaugherty

    bwdaugherty Member

    Joined:
    Nov 26, 2012
    Messages:
    118
    Likes Received:
    0
    I would like to learn How to remove Blog Date/Author and # of Comments that shows up above posts. thanks ahead of time! You guys are great!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .content-bar .post .post_meta li.post_date {
    display: none;
    }
    .content-bar .post .post_meta .posted_by {
    display: none;
    }
    .content-bar .post .post_meta .post_comment {
    display: none;
    }
    This will remove the Blog Date, Author and # of Comments that shows up above posts.

    If you want to remove post category also (means all the post meta that shows up above posts ) then paste the following code in your Custom CSS
    Code:
    .content-bar .post .post_meta {
    display: none;
    }
    This will remove all the post meta that shows up above posts.
     

Share This Page