Hi – did a search on the forum for how to add share icons on portfolio page. Added code referred to here but the share icons are not showing.
https://kriesi.at/support/topic/share-icons-on-pages-and-portfolio-items/
This is a sample page… http://beforetheseries.com/portfolio-item/and-another-great-news-article/
don’t need all the icons – just twitter, facebook, linkedin
Hey squard!
Try adding this to the bottom of your functions.php file.
add_action( 'ava_after_content', 'enfold_customization_portfolio_share' );
function enfold_customization_portfolio_share(){
if ( is_singular( 'portfolio' ) ) {
echo avia_social_share_links();
echo '<style type = "text/css">.av-share-box { padding-right: 50px; }</style>';
}
}
Cheers!
Elliott
Thanks — added, but still not showing.
Think i resolved by adding a share plugin though that i can add wherever i need to add sharing.
Thanks for your help – Y