How to hide Email and website boxes in comments?
I have my site set up not to require registration to comment but it still shows boxes for Name, Email Address and Website above the comments box. I found these listed in the comments.php file. How do I hide the Email address and Website boxes? My newbie tendencies say to back up the file and then simply delete this related code:
Surely there is a better way???
<label for="email">Email Address <?php if ($req) echo "(required)"; ?></label>
<input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="50" tabindex="2" /></p>
<label for="url">Website</label>
<input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="50" tabindex="3" /></p>
|