Hi There,
Please add the following code under functions.php file locates in your child theme:
function x_add_social_sharing () {
if ( is_singular('post') ) {
echo do_shortcode('[x_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');
Hope it helps 🙂