Posts Tagged ‘kubrick theme’

How to enable page comment on Kubrick theme

Thursday, March 19th, 2009

Ever wonder why you can't seem to enable the comment function on your pages even the enable comment box is ticked? It's because the comment function was removed on the latest Kubrick theme. Not sure why... but here's a quick fix, you can open page.php file and add the following code:

<?php comments_template(); ?>

You can add the comment function before the edit_post_link():

<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
<!-- insert the comment function here -->
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

Now time for testing...