The theme that I got for my hosted wordpress blog does not have the option to " leave a comment " on pages. Is it possible to enable this?
You can open the file named page.php and add the following code after the loop: <?php comments_template(); // Get wp-comments.php template ?> HTML: . You may need to mov it around a few times depending on where you need it to display. for loop visit http://codex.wordpress.org/The_Loop Code (markup):
Or Just do this Just add after <!--end of article--> Two lines: <!--opens comments.php--> <?php comments_template(); ?> that's all
<?php comments_template(); ?> is the correct code to add but remember to compare your page.php file to your single.php page so that you use the same classes etc to style the comment area (eg. make sure they are the same so that the comment section is consistent with the rest of your theme)