Forums
Home / Theme: Astra / Ho to remove URL / Website field from comments section
(@rnk123)
3 years ago
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.
The page I need help with: [log in to see the link]
UPDATE: the following code found on another site seem to be working
add_filter(‘comment_form_field_url’, ‘__return_false’);
(@bsfherman)
2 years, 12 months ago
Hi @rnk123,
Good to know that you have figured it out. And thanks for sharing.
Please mark this thread as Resolved. Feel free to create a new one if there is anything else related to Astra we can help you with.
Resolved
Kind regards, Herman 🙂
(@rnk123)
3 years ago
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
It did not work. Can anyone shed some light on what I am missing? Thanks in advance.
The page I need help with: [log in to see the link]