Hey there, I’m wondering if this solution for adding a full width blog image to the blog posts page is relevant?
I had this working before, but it no longer seems to be working,
Hey there, I’m wondering if this solution for adding a full width blog image to the blog posts page is relevant?
I had this working before, but it no longer seems to be working,
Thanks for looking! I got this working so I can now see the fullwidth featured image at the top of post pages - but now I’m not seeing a way to get social share icons on posts. Could you provide any help with that?
Hi there,
Thank you for reaching out to us. To add social share icons on posts just add the following code in your child theme’s functions.php file
function x_add_social_sharing() {
if ( is_single() ) {
echo do_shortcode('[x_share title="Share this Post" facebook="true" twitter="true" google_plus="true" linkedin="true" pinterest="true" reddit="true" email="true"]');
}
}
add_action('x_before_the_content_end', 'x_add_social_sharing');
Cheers!
Thanks so much!
You are most welcome. 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.