How do I remove the date and author on each individual post?

Discussion in 'Infoway WordPress Theme' started by leadology, May 27, 2013.

  1. leadology

    leadology Member

    Joined:
    Dec 28, 2011
    Messages:
    100
    Likes Received:
    2
    You already told me how to remove on the page that shows all posts but I still have that info on each individual post that I don't want to show. Thank you:) PS: fantastic support from you guys! remove-date-author-on-each-post.png
     
  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.single .post_meta .posted_by {
    display: none;
    }
    .content-bar .post.single .post_meta .post_date {
    display: none;
    }
    This will solve your issue.
     

Share This Page