This action allows adding HTML on the edit profile page.
do_action('profilegrid_edit_user_field_html',$uid);
Simple example
function profile_magic_html_edit_profile($uid)
{
//do something with the user-id on the profile page here.
}
add_action('profilegrid_edit_user_field_html', 'profile_magic_html_edit_profile');

