How ?can I add the Enfold social share buttons exactly the same as in posts for Woocommerce product pages
Thanks.
Derek
Thanks but I want to show a uniform design so I really need a way of using your integrated social sharing buttons on the Woocommerce single product pages.
Try adding this at the very end of your theme / child theme functions.php file:
add_action('woocommerce_after_single_product_summary', function() {
avia_social_share_links();
}, 2);
And this to Quick CSS / child theme style.css:
.single-product .av-share-box {
margin-bottom: 0;
}
Great Josue!
Thank you so much.
That helped me a lot.