Reputation: 11
I would like the reply textarea to be visible all the time, not just when the user clicks the comments link (generated by comments_popup_link).
I have googled this and drawn a blank - 1 post advised using comments_template() instead of comments_popup_link but that doesn't work. It seems like it should be straightforward but I can't figure it out - can someone help?
Thanks!
Upvotes: 1
Views: 579
Reputation: 5346
Try using comment_form(); instead of comments_popup_link();.
http://codex.wordpress.org/Function_Reference/comment_form
Upvotes: 1
Reputation: 11
Thanks aendrew for your help - finally the code I used to get my comments functionality working was:
$withcomments = true; comments_template();
Upvotes: 1