How do I set up my page so people can post comments? Do they have to log into wordpress first? Then what do they do?
Also, how do people subscribe to my blog?
Thanks,
Scott
How do I set up my page so people can post comments? Do they have to log into wordpress first? Then what do they do?
Also, how do people subscribe to my blog?
Thanks,
Scott
See Admin/Settings/Discussion
I've been to Admin/Settings/Discussion and messed around with the various buttons and saved changes, but no luck in getting a comment box to appear in my website. Also not sure how to invite people to subscribe.
Other suggestions?
It could be that your current theme doesn't include a comments template. Try activating the default theme and see if a comment form is displayed when commenting is turned on.
No luck with the default template or others either. The strange thing is that click to preview changes from the Post page, then I do see it there at the bottom. Does that offer any clues?
Try deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
Still no luck. Any other ideas?
I'm not sure what happened, but now it's working. Maybe it took a little time for the deactivation to take effect.
Thanks,
Scott
Nope. Something is still off. It works on one of my computers, but when I visit from another computer there is no "comment" box. Hmmm.
And now no luck on either computer. How strange.
I'm back to square one. I have no comment boxes on my pages. What else can I try? Are there specific buttons that should be activated, or specific ones that should be deactivated?
Any suggestions are appreciated!
when I visit from another computer there is no "comment" box.
What's the difference between the 2 machines? Have you configured your site so that only registered users can comment? Are you logged in on both machines?
I've configured it so anyone can leave a comment without providing a name or email address. Here's what I've noticed: it's only the front page that doesn't offer visitors to leave comments. If you go to the pages, each of them invites comments, and if you go to the specific article page (the same article that's on the front page), then it does offer comments. Is it possible to invite comments on the front page as well?
Try adding <?php comments_popup_link();?> just before the end of the Loop in your theme's index.php file.
http://codex.wordpress.org/Template_Tags/comments_popup_link
Where do I find the theme's index.php file? I looked in the "theme editor" under "appearance" and couldn't find the loop anywhere. As I understand it, the loop is supposed to start with: <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
Correct? Am I looking in the wrong place? Or do I need to add a loop?
Correct but it's possible that the your theme's index.php file is using some custom functionality. Drop a copy of the file into the WordPress pastebin and post the pastebin url here so we can have a look at it.
Here it is: http://wordpress.pastebin.com/U7hNhR5Q
That's your stylesheet, not your theme's index.php template file.
Where do I find the theme's index.php template file?
index.php file is stored under template directory which you use.
I'm not finding the template directory either. What tab is it under? Or where do I go in my wordpress account?
Look in Admin/Appearance/Editor
Okay, here's the index.php in the wordpress pastebin: http://wordpress.pastebin.com/w4N5g1tC
I tried inserting <?php comments_popup_link();?> just before the end of the loop—just before "<?php endwhile; else: ?>" —but nothing happened.
Try changing:
<p class="tags"><?php the_tags('Tags: '); ?></p>
to:
<p class="tags"><?php the_tags('Tags: '); ?></p>
<p><?php comments_popup_link();?></p>No luck. Any other possibilities?
(Thanks for all your efforts with this. They are much appreciated!)
Site url?
artofselfcreation.com
ry replacing:
<p class="postcomments">{ <?php comments_number('No Comment','Only 1 Comment','% Comments'); ?> }</p>
with:
<p class="postcomments"><?php comments_popup_link('No Comment', 'Only 1 Comment', '% Comments' ,'comment-link', 'Comments are off '); ?></p>
in index.php
Still no luck. Any other possibilities?
This topic has been closed to new replies.