Title: Adding comments form to pages
Last modified: August 22, 2016

---

# Adding comments form to pages

 *  [nusa surf](https://wordpress.org/support/users/nusa-surf/)
 * (@nusa-surf)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/)
 * We are trying to add comments forms at the bottom of our pages.
    I’ve tried to
   edit the page template files as suggested in other posts using the code below(
   adding it before the closing div):
 * `<?php comments_template('/templates/comments.php'); ?>`
 * Then we added a commment from our admin and the comment shows but the comment
   form still doesn’t show.
 * We are using Child-Virtue Theme.
 * Sorry no links to our website as it is still not online (working on it locally)
 * Thanks in advance.

Viewing 10 replies - 1 through 10 (of 10 total)

 *  [Ben Ritner – Kadence WP](https://wordpress.org/support/users/britner/)
 * (@britner)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536059)
 * What template are you using in the page settings and what template file did you
   add the code to?
 * Kadence Themes
 *  Thread Starter [nusa surf](https://wordpress.org/support/users/nusa-surf/)
 * (@nusa-surf)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536212)
 * Thanks very much for your help.
 * We are using Fullwidth for template.
    The template file is page.php
 * We added the code into page template files (appearance/editor/edit themes/page.
   php):
 * `<?php comments_template('/templates/comments.php'); ?>`
 * This is my code (page.php) after we added:
 *     ```
       <div id="pageheader" class="titleclass">
       		<div class="container">
       			<?php get_template_part('templates/page', 'header'); ?>
       		</div><!--container-->
       	</div><!--titleclass-->
   
           <div id="content" class="container">
          		<div class="row">
             <div class="main <?php echo kadence_main_class(); ?>" role="main">
   
       <?php get_template_part('templates/content', 'page'); ?>
       <?php comments_template('/templates/comments.php'); ?>
       </div><!-- /.main -->
       ```
   
 * I have the “allow comments” ticked on each page where is needed.
 * I appreciate your earlier responses to my question. Thanks again for all of your
   help.
 *  [Ben Ritner – Kadence WP](https://wordpress.org/support/users/britner/)
 * (@britner)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536222)
 * Hey,
    If your using the fullwidth template then the file is not page.php
 * It’s page-fullwidth.php
 * Kadence Themes
 *  [thespikers](https://wordpress.org/support/users/thespikers/)
 * (@thespikers)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536243)
 * This worked wonderfully for me!! Thank so much! I am in love with this theme.
   I may have to purchase it 🙂
 *  Thread Starter [nusa surf](https://wordpress.org/support/users/nusa-surf/)
 * (@nusa-surf)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536253)
 * Thanks so much.
    We already tried to put the code into page-fullwidth.php
 * This is our code after adding it:
 *     ```
       <?php
       /*
       Template Name: Fullwidth
       */
       ?>
   
       	<div id="pageheader" class="titleclass">
       		<div class="container">
       			<?php get_template_part('templates/page', 'header'); ?>
       		</div><!--container-->
       	</div><!--titleclass-->
   
           <div id="content" class="container">
          		<div class="row">
            		<div class="main <?php echo kadence_main_class(); ?>" role="main">
       				<?php get_template_part('templates/content', 'page'); ?>
       				<?php comments_template('/templates/comments.php'); ?>
       			</div><!-- /.main -->
       ```
   
 * The result is still the same as before, this is our [printscreen](http://tinypic.com/r/2mg03g6/8).
 * This is a pict of what we would want: [pict](http://tinypic.com/r/2cp3r12/8)
 * In that pict we see ‘leave a reply’ form after the comments.
    We would want the
   original comment form from wordpress showing below the facebook social plugin.
 * What are we doing wrong?
 * We would like to be able to have this feature without using an extra plug-in.
 * Thanks again for all of your help. This is an awesome theme.
 *  [Ben Ritner – Kadence WP](https://wordpress.org/support/users/britner/)
 * (@britner)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536263)
 * Are you using the comment plugin? It looks like your using a plugin that is replacing
   the wordpress comments.
 * Kadence Themes
 *  [Ben Ritner – Kadence WP](https://wordpress.org/support/users/britner/)
 * (@britner)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536265)
 * Anyway you can post to the actual site?
 *  Thread Starter [nusa surf](https://wordpress.org/support/users/nusa-surf/)
 * (@nusa-surf)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536272)
 * Thank so much.
 * Yes, we were using facebook social plug-in.
    We already deactived it, but the
   comment form still doesn’t show. (We also deactivated just in case akismet, jetpack,
   etc).
 * This is a bigger print screen: [actual site](http://tinypic.com/r/2d6lezm/8)
 * There are any pict when i tried to inspect element from chrome browser:
    [picture1](http://tinypic.com/r/50lhkz/8)
   [picture2](http://tinypic.com/r/2rxijpc/8) [picture3](http://tinypic.com/r/21lkif6/8)
   [picture4](http://tinypic.com/r/vhxl55/8) [picture5](http://tinypic.com/r/2ephwnp/8)
 * Maybe you can picture better the cause of our problems with these printscreens
   above.
 * Many thanks.
 *  [Ben Ritner – Kadence WP](https://wordpress.org/support/users/britner/)
 * (@britner)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536286)
 * Hey,
    I would really need to see the actual site so I could look at the code 
   and see what might be hiding your reply form and causing the strange styling 
   of the comments.
 * Kadence Themes
 *  Thread Starter [nusa surf](https://wordpress.org/support/users/nusa-surf/)
 * (@nusa-surf)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536295)
 * Thanks for your respond.
    Please check your email for dropbox link of our site.
 * Many thanks.

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Adding comments form to pages’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/virtue/3.4.15/screenshot.png)
 * Virtue
 * [Support Threads](https://wordpress.org/support/theme/virtue/)
 * [Active Topics](https://wordpress.org/support/theme/virtue/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/virtue/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/virtue/reviews/)

## Tags

 * [child](https://wordpress.org/support/topic-tag/child/)
 * [Comments](https://wordpress.org/support/topic-tag/comments/)
 * [pages](https://wordpress.org/support/topic-tag/pages/)

 * 10 replies
 * 3 participants
 * Last reply from: [nusa surf](https://wordpress.org/support/users/nusa-surf/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/adding-comments-form-to-pages/#post-5536295)
 * Status: not resolved