Did a search here for the answer, but didn’t find anything. My question is:
How do you add share links to the bottom of pages?
I have done this for the posts, but would LOVE to have these at the bottom of the pages too.
Thanks in advance for your answer. I’ve bought this theme 3 times now!
Jack.
Hi Jack!
Please refer to Peter’s post here – https://kriesi.at/support/topic/share-icons-on-pages-and-portfolio-items/#post-260646
Regards,
Yigit
Is there a way to add this to all pages (and not just individual pages?).
Jack.
Hey Jack!
This code will add it to all pages:
add_action('ava_after_content', 'avia_add_social_toolbar', 10, 2);
function avia_add_social_toolbar($id = "", $context = "")
{
if($context == "page")
avia_social_share_links();
}
Regards,
Josue