Hello.
Can you help me?
1) How add Instagram button to share links?
2) Can i add share links only to 1 single page?
I find this topic (https://kriesi.at/support/topic/share-icons-on-pages-and-portfolio-items/)
but it add share links to all pages.
Hi Evgeny!
Refer to this:
https://kriesi.at/support/topic/social-sharing-add-another-service/
Regarding how to limit it to certain Pages you can use the is_page conditional:
add_action('ava_after_content', 'avia_add_social_toolbar', 10, 2);
function avia_add_social_toolbar($id = "", $context = "")
{
if($context == "page" || $context == "single-portfolio")
if(is_page("21"))
avia_social_share_links();
}
Cheers!
Josue