Hi Thomas, I can help you add instagram to the mobile sharebar and you can link it to your profile page.
Please follow the below steps,
1) Please add the below code to your theme’s function.php
file before ?>
function wpsr_instagram_msb($buttons){
$buttons['instagram']['link'] = 'YOUR_INSTAGRAM_URL';
$buttons['instagram']['features'] = array( 'for_profile', 'for_share' );
return $buttons;
}
add_filter('wpsr_mod_social_icons_list', 'wpsr_instagram_msb');
(also replace your instagram profile url in the above code )
Thanks,
Aakash