How To Remove Comment Website Bar

Posted in: Newsmag
Post count: 140

sorry for my bad english. i want this

33

Post count: 9544

This is not theme related as the basic comment functions are part of wordpress… so google search always best place to look vs waiting for help here.

But, you can add this to your functions.php file at bottom:

function remove_comment_fields($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields', 'remove_comment_fields');

Post count: 7909

Hi,

If you want you can hide it with css: http://screencast.com/t/qs8AEROrJ

.comments .needsclick #url {
display: none;
}

Or remove this code: http://screencast.com/t/j8pU5HuvAqK
Result: http://screencast.com/t/zQ4JihwS

Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newsmag’ is closed to new topics and replies.