@wp_account_hs there is currently no such thing as link sharing to Instagram (if/when Instagram permits link sharing, AddToAny will appropriately include Instagram among “share” services, too, in addition to the “follow” services).
If you’re desperate to include an Instagram follow icon among your share icons, see the plugin’s FAQ titled, “How can I add a custom standalone share button?”
Example PHP code to add to your theme’s functions.php file:
function addtoany_include_instagram_in_share_services( $services ) {
$services['instagram_share_service'] = array(
'name' => 'My Instagram Profile',
'icon_url' => 'https://www.example.com/images/my-instagram-icon.png',
'icon_width' => 32,
'icon_height' => 32,
'href' => 'https://www.instagram.com/example/',
);
return $services;
}
add_filter( 'A2A_SHARE_SAVE_services', 'addtoany_include_instagram_in_share_services', 10, 1 );