This action allows showing the additional information on the profile page in the header at the front end.
do_action('profile_magic_show_additional_header_info',$user_id);
Simple example
function profile_magic_add_info($user_id)
{
//do something with the user id here.
}
add_action('profile_magic_show_additional_header_info', 'profile_magic_add_info');

