metaphyzxx
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments suddenly stopped workingI also can’t seem to get comments to work.
Site: http://www.introspektive.com/FPI get one of two results when trying to enter a new comment. If I’m logged in on my admin panel, the page just goes back to the front when trying to enter new comments. If I’m not logged on at all, then it just generates error: “Sorry, no posts matched your criteria”.
Any assistance would be appreciated
This is the form for my comments:
<!–
<form action=”<?php echo get_option(‘siteurl’); ?>/wp-comments-post.php” method=”post” id=”commentform”><?php if ( $user_ID ) : ?>
Logged in as /wp-admin/profile.php”><?php echo $user_identity; ?>. /wp-login.php?action=logout” title=”<?php _e(‘Log out of this account’) ?>”>Logout »
<?php else : ?>
<input type=”text” name=”author” id=”author” value=”<?php echo $comment_author; ?>” size=”22″ tabindex=”1″ />
<label for=”author”><small>Name <?php if ($req) _e(‘(required)’); ?></small></label><input type=”text” name=”email” id=”email” value=”<?php echo $comment_author_email; ?>” size=”22″ tabindex=”2″ />
<label for=”email”><small>Mail (will not be published) <?php if ($req) _e(‘(required)’); ?></small></label><input type=”text” name=”url” id=”url” value=”<?php echo $comment_author_url; ?>” size=”22″ tabindex=”3″ />
<label for=”url”><small>Website</small></label><?php endif; ?>
<textarea name=”comment” id=”comment” cols=”50″ rows=”10″ tabindex=”4″></textarea>
<input name=”submit” type=”submit” id=”submit” tabindex=”5″ value=”Submit Comment” />
<input type=”hidden” name=”comment_post_ID” value=”<?php echo $id; ?>” /><?php do_action(‘comment_form’, $post->ID); ?>
</form>
–>