Hi,
Please given below code at functions.php of child theme.
<?php
function sf_product_share() {
global $post;$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), false, '' );
?>
<div class="product-share clearfix">
<span><?php _e("Share", "swiftframework"); ?></span>
<ul>
<li><a href="mailto:?subject=<?php the_title(); ?>&body=<?php echo strip_tags(apply_filters( 'woocommerce_short_description', $post->post_excerpt )); ?> <?php the_permalink(); ?>" class="product_share_email"><i class="fa-envelope"></i></a></li>
<li><a href="https://plus.google.com/share?url=<?php the_permalink(); ?>" onclick="javascript:window.open(this.href,
'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><i class="fa-google-plus"></i></a></li>
<li><a href="http://vkontakte.ru/share.php?url=<?php the_permalink(); ?>" onclick="javascript:window.open(this.href,
'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;" class="product_share_pinterest"><i class="fa-vk"></i></a></li>
</ul>
</div>
<?php } ?>
Thanks ๐
With Best Regards
Mohammad