How to add a custom company name for the members

Suppose you want to add a custom company name for your team members, you can do it with the custom code below. If you check the code, you will see a filter hook (sp_team_pro_after_member_job_title) available through which you can do this. Add the following custom code to your current theme’s functions.php file.

function sptp_member_company_name(){
    $company_name = '<h4 class="sptp-member-company">Company Name</h4>';
    echo $company_name;
}
add_action( 'sp_team_pro_after_member_job_title', 'sptp_member_company_name', 10 );