Show Additional Header Info 2 in Profile

This action allows showing the additional information on the profile page in the header at the front end. It shows the details just after the profile_magic_show_additional_header_info.

 do_action('profile_magic_show_additional_header_info2',$user_id);

Simple example

function profile_magic_add_info2($user_id)

{

//do something with the user id here.

}

add_action('profile_magic_show_additional_header_info2', 'profile_magic_add_info2');