Hi Themeco,
I’ve implemented this suggested code in my functions.php and it’s working great:
function x_add_social_sharing() {
if ( (!is_front_page() && is_home()) || is_single() ) {
echo do_shortcode(’[x_share title=“Share This Article” facebook=“true” twitter=“true” linkedin=“true” instagram=“true” ]’);
}
}
add_action(‘x_before_the_content_end’, ‘x_add_social_sharing’);
I am trying to add social sharing for Instagram, but can’t find a thread that talks about this and my attempt to include it above doesn’t seem to work. Can you help?
Thanks
Amanda