post_author; // $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case 'pingback' : case 'trackback' : // Display trackbacks differently than normal comments. ?>
  • >
  • comment_approved ) : ?>

    esc_html__( 'Reply', 'bptadvisor' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    '; $fields['email'] = '
    '; $fields['url'] = '
    '; return $fields; } add_filter('comment_form_default_fields','bptadvisor_modify_comment_form_fields'); } /** * Remove the original comment button */ if ( ! function_exists( 'bptadvisor_comment_form_submit_button' ) ){ function bptadvisor_comment_form_submit_button($button) { $button = ''; return $button; } add_filter('bptadvisor_comment_form_submit_button', 'bptadvisor_comment_form_submit_button'); }