comment popup from a page
-
I am using a popup window for people to add comments on my blog.
This works ok when commenting on a post.I also have stand alone pages and would like for people to add comments to these static pages using the same popup. However when the user clicks “add a comment” the pop up window opens but nothing is displayed.
Now i believe this is due to the piece of code in the comments-popup.php file:
<?php
/* Don’t remove these lines. */
add_filter(‘comment_text’, ‘popuplinks’);
while ( have_posts()) : the_post();
?>I think that as this is being called from a page “wordpress thinks” there are no posts so the loop is not being entered!!
How do i get around this? What am i missing as I know you can have comments on a page now.
Any help would be appreciated.
thanks
- The topic ‘comment popup from a page’ is closed to new replies.