Comments & Responses - fdhodge

Discussion in 'Cloriato WordPress Theme' started by fdhodge, Nov 26, 2012.

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

    fdhodge New Member

    Joined:
    Nov 26, 2012
    Messages:
    22
    Likes Received:
    0
    How do I remove "Comments & Responses" and "comments closed" from my pages.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to single.php present in your theme directory and remove the code given below

    Code:
    <h3>Comments &amp; Responses</h3>
          <?php comments_template(); ?>
    Sending image for reference


    [​IMG]


    Use same process for others pages
    (page.php,template-fullwidth.php,)


    This will solve your issue.
     
    marianabgs likes this.
  3. jrundle

    jrundle Member

    Joined:
    Dec 28, 2011
    Messages:
    33
    Likes Received:
    2
    Is there code for this, that I can add in the Cloriato theme Custom CSS - box - would prefer to do it there.
    Thanks
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content h3 {
    display: none;
    }
    #commentsbox {
    display: none;
    }
     
  5. jrundle

    jrundle Member

    Joined:
    Dec 28, 2011
    Messages:
    33
    Likes Received:
    2
    Hi

    just added, however since I was using H3 in my sub-headings, these have dissapeared - is this correct and then I will need to use H2 or H4

    thanks for your help
    janet
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Either delete comment and response code from the single.php and page.php file

    Or

    Change your sub-headings tag from <h3>.
     
  7. jrundle

    jrundle Member

    Joined:
    Dec 28, 2011
    Messages:
    33
    Likes Received:
    2
    okay thanks for your help

    janet
     
Thread Status:
Not open for further replies.

Share This Page