Need help with Social Media Sharing Icons Positioning on Blog Posts and Recipes Page

Hello, I tried to see if anyone else had already asked for help with this but I have not found the answer. I added the following code to my functions.php file in my X child theme. I would like for this to be positioned right under the featured image and for them to float as someone scrolls through the article. Currently, they are positioned at the end of the content only. I also would like for these social media icons to show up on my recipes page as well and not just on my blog posts. How do I accomplish that?

function x_add_social_sharing ( $content ) {
if ( is_singular(‘post’) ) {
echo do_shortcode(’[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’);

Hi There,

Thanks for writing in!

To resolve your issue, please make use of this code instead:

function x_add_social_sharing ( $content ) {
  if ( is_singular('post') || is_page('recipes') ) {
    echo do_shortcode('[share class="mam" title="Share this Post" facebook="true" twitter="true" google_plus="true" linkedin="true" pinterest="true" reddit="true" email="true"]');
  }
}
add_action('x_after_the_content_begin', 'x_add_social_sharing');

We would loved to know if this has work for you. Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.