I'm trying to filter thematic_comment_form_args and (essentially) remove comment_notes_before, but for some reason the filter isn't activating.
function childtheme_override_comment_form_args($args)
{
$args['comment_notes_before'] = '<p class="comment-notes"></p>';
return $args;
}
add_filter('thematic_comment_form_args', 'childtheme_override_comment_form_args');