Hi,
Try to add the following PHP code snippet to the child theme functions.php file to do this
function woodmart_product_share_buttons() {
$type = woodmart_get_opt( 'product_share_type' );
?>
<?php if ( woodmart_is_social_link_enable( $type ) ): ?>
<div class="product-share">
<span class="share-title"><?php echo ($type == 'share') ? esc_html__('Share', 'woodmart') : esc_html__('Follow', 'woodmart'); ?></span>
<?php echo woodmart_shortcode_social( array( 'type' => $type, 'size' => 'small', 'style' => 'colored-alt' ) ); ?>
</div>
<?php endif ?>
<?php
}