Hello There,
To resolve your issue, since the child theme is set up, please add the following code in your child theme’s functions.php file
// Add social sharing to product page
// =============================================================================
function add_social_sharing_to_product_page() {
echo do_shortcode("[share title='Share this product' facebook='true' twitter='true' google_plus='true' pinterest='true' email='true' class='mtl']");
}
//add_action( 'woocommerce_single_product_summary', 'add_social_sharing_to_product_page', 35 );
// =============================================================================
This code will automatically add entry share right below the add to cart button.
Please let us know if this works out for you.