Adding Comments to Pages

Discussion in 'ColorWay WordPress Theme' started by reigngroup, Mar 1, 2013.

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

    reigngroup New Member

    Joined:
    Feb 28, 2013
    Messages:
    2
    Likes Received:
    0
    Location:
    Seattle, Washingtong
    Hey there...

    How do I make it so that I can put my disqus comments on my pages. They show up on the posts, but not the pages?

    Thank you.
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    For default page, Go to Appearance > Editor / page.php
    and add code given below as shown in image.
    Code:
    <!--Start Comment Section-->
                  <div class="comment_section">
                        <!--Start Comment list-->
                        <?php comments_template( '', true ); ?>
                        <!--End Comment Form-->
                  </div>
                  <!--End comment Section-->
    [​IMG]

    For fullwidth page, Go to Appearance > Editor / template-fullwidth.php
    and add code given below as shown in image.
    Code:
    <!--Start Comment Section-->
                  <div class="comment_section">
                        <!--Start Comment list-->
                        <?php comments_template( '', true ); ?>
                        <!--End Comment Form-->
                  </div>
                  <!--End comment Section-->
    [​IMG]
     
  3. reigngroup

    reigngroup New Member

    Joined:
    Feb 28, 2013
    Messages:
    2
    Likes Received:
    0
    Location:
    Seattle, Washingtong
    Awesome! Thank you very much, Sir.
     
Thread Status:
Not open for further replies.

Share This Page