Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Ho to remove URL / Website field from comments section

$
0
0

Replies: 1

Hello there, I am trying to remove the URL/Website field from the comments section on this page by following this
https://wordpress.org/support/topic/unable-to-disable-website-field-in-comments/

Added the following to the functions.php

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

It did not work. Can anyone shed some light on what I am missing? Thanks in advance.


Viewing all articles
Browse latest Browse all 59525

Trending Articles