Website field and email field in comments
I recently upgraded from simple catch to simple catch pro. While using simple catch, i successfully managed to remove the website and email field with this function:
function wpb_disable_comment_url($fields)
{
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','wpb_disable_comment_url');
function wpb_disable_comment_email($fields)
{
unset($fields['email']);
return $fields;
}
add_filter('comment_form_default_fields','wpb_disable_comment_email');
This no longer works in simple catch pro. I'm kindly requesting help with this issue.