How to hide comments off & sidebar on blog posts

Discussion in 'RoadFighter WordPress Theme' started by deveshd, Mar 1, 2015.

  1. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    I want to hide the "comments off" from the posts and also, I want to hide the sidebar and make the posts fullwidth. How to do it?
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello !

    Use given CSS in custom CSS box.
    Code:
    .content-bar .post .post_meta .post_comment
    {
    display:none;
    }
    To make full width blog page please edit your blog post page and make select a full width template.


    Thanks & Regards
    Pramod Patel
     
  3. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    1. On the post, it still shows "Comments are closed" also Previous post and next post links. How do I hide them?

    2. I tried to to edit blog post but I do not see any option to change the template. Please advise.
    Screenshot 2015-03-02 00.39.58.png
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi deveshd!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    div#commentsbox {
    display: none !important;
    }
    nav#nav-single {
    display: none !important;
    }
    Thanks,
    Praveen
     
  5. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    Thanks Praveen. How do I solve the #2 issue though? How do I make my posts full width?
     
  6. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello Devesh !

    Please follow below image to resolve this.
    road-fighter-singlepage-fullwidth-3march.png

    Thanks & Regards
    Pramod Patel
     
  7. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
  8. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello Devesh !

    Please delete code for sidebar from single.php
    raodfighter-sidebar-4-march-15.png


    Thanks & Regards
    Pramod Patel
     

Share This Page