Remove Comments And The Post-Meta Box On The Left

Discussion in 'Infoway WordPress Theme' started by khaing, Jan 23, 2013.

Thread Status:
Not open for further replies.
  1. khaing

    khaing Guest

    Joined:
    Jul 13, 2012
    Messages:
    7
    Likes Received:
    0
    Hi Guys,

    I have another question and would really appreciate assistance on this one.

    I would like to completely remove comments (everything including 'leave a reply) and the post-meta box on the left of the blog and the archives and practically everywhere else.

    The left box consists of date, number of comments and the author's name. I would like to remove the entire box if possible as I do not wish to display comments and the author's name since I'm the only author.

    Is there a code in the editor where I can edit the fields?

    Thanks.

    Regards,

    Khai
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

    Go to single.php present in your theme directory and remove the code given below

    Code:
     <!--Start Comment box-->
          <?php comments_template(); ?>
          <!--End Comment box-->
    Sending image for reference

    [​IMG]

    2.For your second issue


    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .content-bar .post.single .post_meta{
    display:none;
    }
    .content-bar .post .box .post_meta{
    display:none;
    }
    This will solve your issue.
     
  3. khaing

    khaing Guest

    Joined:
    Jul 13, 2012
    Messages:
    7
    Likes Received:
    0
    This is great! I've just fixed it. Thanks ;)
     
Thread Status:
Not open for further replies.

Share This Page