December 3, 2012 at 9:19 pm
#1077
Keymaster
Arguments passed into WordPress’s comment_form function are filtered with “themeblvd_comment_form” — And you can find their default setup by the framework by looking at the function themeblvd_get_comment_form_args
found in this file:
/framework/frontend/functions/helpers.php
And here’s how you’d use it to remove the Website URL field from your Child theme’s functions.php:
function my_comment_form( $args ){ unset( $args['fields']['url'] ); return $args; } add_filter( 'themeblvd_comment_form', 'my_comment_form' );