Hello,
Please add this code to the functions.php of the child theme:
function basel_share_buttons_custom_position(){
?>
<div class="product-share">
<?php echo basel_shortcode_social( array( 'type' => basel_get_opt( 'product_share_type' ), 'style' => 'colored' ) ); ?>
</div>
<?php
}
add_action( 'woocommerce_single_product_summary', 'basel_share_buttons_custom_position', 60 );
And this code to the Theme Settings > Custom CSS > Global:
.product-design-alt > .product-share {
display: none;
}
Best Regards