I was wondering how to remove or disable the "website" field in the comment section. I couldn't figure out how to do it with CSS.

Thanks!
I was wondering how to remove or disable the "website" field in the comment section. I couldn't figure out how to do it with CSS.

Thanks!
remove this html in comments.php:
<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" tabindex="3" /><label for="url"><?php _e('Website','BigFeature'); ?></label></p>
or use jQuery like this if you just want to remove it certain places (f.ex add a bodyclass before the #commentform id):
<script>jQuery(function($){ $("#commentform #url").parent().remove(); });</script>
You must log in to post.