Comment form not displaying “Name” “Email” or “Website”
-
My comments form is acting up. All it has is the input area for the actual comment, but no area for author name, email or website. I checked the comments template, but everything seems right. Here’s the relevant code:
<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>Do i need to do something in the stylesheet to make the input areas appear?
Website is https://www.tacojohn.org
- The topic ‘Comment form not displaying “Name” “Email” or “Website”’ is closed to new replies.