Hi,
I display post with Blog posts module. I have social media sharing buttons on every single post footer from Jetpack.
Now I want to have these sharing buttons on list posts – blog posts module.
So I took the tutorial (https://www.skyverge.com/blog/move-jetpack-social-sharing-buttons-post/) and modified my /includes/loop-index.php module from my child theme and added
echo sharing_display();
before
echo "</article>";
But I have nothing to see.
Could you please give me a hand with this issue?
Thanks
M
Hey Mariusz,
Please send us a temporary admin login so that we can have a closer look. You can post the details in the Private Content section of your reply.
Thanks,
Rikard
Hi Richard,
There you are :)
Thanks.
Hi,
We had to enable the social icons to display in the home page and then added the function around this block:
$content_output = '
<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>';
$content_output .= $content;
$content_output .= sharing_display();
$content_output .= '</div>
';
Best regards,
Ismael
That’s it. Thank you Ismael