Hi,
How would you add social share buttons right after every post, below excerpt in blog posts module?
Thanks,
M
Hey Mariusz,
Can you please post a screenshot and show the changes you would like to make? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.
Social share buttons share the page that they are on. Therefore, you would not be able to share your blog posts from blog overview page, instead you would be sharing your blog overview page. If you would like to share posts instead, please try using a plugin.
Best regards,
Yigit
Hi Yigit,
Here’s the layout I want to achieve:
How can I do that?
Thank you ;)
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
add_action('ava_after_content', function() {
if(!is_singular()){
avia_social_share_links();
}
});
Cheers!
Josue