Removing content from Post

Discussion in 'Local Business WordPress Theme' started by michel01, Jan 25, 2014.

  1. michel01

    michel01 Member

    Joined:
    Nov 13, 2013
    Messages:
    35
    Likes Received:
    0
    How do I remove the "next" or "prev" content on a post.
    How do I remove the "comments are close" content on a post.
     

    Attached Files:

  2. Piyush

    Piyush Support Staff

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

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

    Code:
    #nav-single {
    display: none;
    }
    
    This will remove the "next" or "prev" content from post.

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

    Code:
    #commentsbox {
    display: none;
    }
     
    This will remove the "comments are close" content from post.
     

Share This Page