Removing “Website” field on comment form
-
Hi! I’m trying to remove the field for a “Website” on my site’s comment forms. I have tried downloading the Comment Link Remove plugin (which was also what WP support suggested) and it didn’t work, and I have also tried installing the Code Snippet plugin and entering the following code:
add_filter(‘comment_form_default_fields’, ‘unset_url_field’);
function unset_url_field($fields){
if(isset($fields[‘url’]))
unset($fields[‘url’]);
return $fields;
}Along with a couple others I found when I tried using Google to solve the problem. I’m not very code-savvy so any help would be greatly appreciated!
The page I need help with: [log in to see the link]
- The topic ‘Removing “Website” field on comment form’ is closed to new replies.