How to change the member name heading tag on the single member page?

Using a hook, you can change the member name heading tag on the single-member page. Add the following code at the bottom of the functions.php file of your current theme. After saving the code, please clear your website and browser cache.

function single_member_name_tag_change() {
    return 'h1';
}
add_filter( 'sptp_team_pro_member_name_tag', 'single_member_name_tag_change', 100 );