In home page, the theme excerpt function, surfarama_excerpt() is limiting the share buttons to show, as it is clipping the post content. The quick possible fix is to manually insert the widget in wp-contents/themes/surfarama/content.php line 62
if ( function_exists( ‘addthis_display_social_widget’ ) ) {
echo addthis_display_social_widget( ” );
}
In single post pages, unfortunately we are unable to reproduce the issue. It would be helpful, if you can share the plugins you used and addthis settings.
If you want to manually insert the widget, please put the code above in your theme file wp-contents/themes/surfarama/content-single.php line 36, inside the div <div class=”entry-content post_content”> before or after the <?php the_content(); ?>