I don’t see any comments link on the page
Exactly. It won’t show up. It’s supposed to follow the », but it doesn’t. The fact with the header is that both the pages and the posts call the same header. Well, as you can see on the main page, posts call the pop-up comments just fine.
Now, I have a question…
I don’t want the comments to show up in my pages. I want them to pop-up. However, when I do the code for this, what you see on my website’s pages happens. Example: http://justanobsession.net/pixel/
Does anyone know why and how I would go about fixing it?
To include the form on a page, simply:
Go to the page template in your theme editor
Include <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> where you want it to say how many comments you have
Find where you would like the comment form and comments to display (before the endwhile argument)
Insert <?php comments_template(); ?>
To change up how it looks, go to comments.php in your theme editor and mess around with the layout and such.