What is the best plugin and approach for implementing product social share similar to what is on this link.
The current WOO commerce social share is too bulky and not a good fit
I also reviewed this link and it works but the result is not design friendly.
My example implementation is included herein
In this setup, how can I reduce the size of the enfold social share buttons
Hi hingex,
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
Victoria
Certainly, I have included the link to my product page in WOO Commerce.
This example theme contains a smaller and design friendly implementation of sharing on the product detail page. it is in the top right versus bottom. However, my main need at the moment is to reduce the size and appearance of the built-in Enfold Social Share
Using your feedback, I was able to reduce the width. How can I additionally move the description section up just a but. Up and closer to the social share buttons?
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#top div.product .woocommerce-tabs {
padding-top: 30px;
}
Best regards,
Yigit
Thank you, this works. I have one last question. In the current state, what would it take to move the share buttons to the top right on the same horizontal plane as the product title? I have an example link.
Hi,
Please add following code to Functions.php file in Appearance > Editor
function av_product_share() {
?>
<div class="single-share-buttons">
<?php echo do_shortcode("YOUR SHORTCODE GOES WITHIN THESE DOUBLE QUOTES"); ?>
</div>
<?php
}
add_action( 'woocommerce_single_product_summary', 'av_product_share', 6 );
and replace that text in the code with your shortcode
Best regards,
Yigit