Remove widgets at blog page

Discussion in 'BusinessGrow One Page WordPress Theme' started by emaarten, Feb 8, 2014.

  1. emaarten

    emaarten New Member

    Joined:
    Feb 2, 2014
    Messages:
    15
    Likes Received:
    0
    Hi There,

    On the blog page (when you press read more at the homepage) there are several items. I want to remove:

    - Search
    - Categories
    - Archives
    - Next Post
    - No comments possible

    Kind Regards,
    Maarten
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
     .sidebar {
    display: none;
    }
    Thanks & Regards
    Gourav Shrivastava
     
  3. emaarten

    emaarten New Member

    Joined:
    Feb 2, 2014
    Messages:
    15
    Likes Received:
    0
    Hi There,

    Thank you for the code. But its not complete. I still have:
    - Next post
    - Previous Post
    - No comments possible

    I also like this ones removed.

    Kind regards,

    Maarten van Everdingen
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

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

    Code:
    #nav-single {
    display: none;
    }
    .post_comment {
    display: none;
    }
    .comment_section {
    display: none;
    } 
    This will solve your issue.
     

Share This Page