I am using this code:
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
to show the comments link. The link shows up (http://thedenverelement.com.previewdns.com/) but when clicked it doesn't go to the /#respond page and consequently no comments form opens up.
What am I missing here?
Thanks in advance...
<?php comments_popup_link(__('No Comments'), __('1 Comment'), __('% Comments')); ?>
Thanks for the reply, but I tried this code and it still didn't open the comments form.
It is important that I get comments working for this client. Does anyone have input to this problem? It would help me a great deal.
Thanks
Found it on my own. The WP code for adding comments is:
<div id="comments-template">
<?php comments_template(); ?>
</div>
I used the comments-template div so I can control the size of the comment text area object in CSS.