We really like the share buttons that show on the bottom of the blog entries. How can we have it show on all the pages as well?
Hi hobart!
Please see here, http://kriesi.at/documentation/enfold/enable-social-share-section-for-pages/.
Best regards,
Elliott
Thank you!
I have attempted adding this:
add_filter(‘avf_template_builder_content’, ‘avia_add_social_toolbar_template_builder’, 10, 1);
function avia_add_social_toolbar_template_builder($content = “”)
{
$content .= avia_social_share_links(array(), false);
$content .= ”;
return $content;
}
to the template file and a code block within the avia editor. Does not seem to be doing anything. Where exactly should this be palced to make it work on pages?