Hi
The sharebuttons do not appear underneath my posts.
The program does not react on the Blog Layout settings (adding posts etc.)
What is wrong?
Thanks for your help
Ingrid
Ok, let us know how it goes.
Cheers!
Josue
Hi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
Josue
Hey Ingrid!
Share buttons only appear on single posts by default. Try adding this at the very end of your theme functions.php file:
add_action('ava_after_content', 'avia_add_social_toolbar', 10, 2);
function avia_add_social_toolbar($id = "", $context = "")
{
if(!is_singular('post')) avia_social_share_links();
}
Cheers!
Josue