I am trying to do the same thing (display share buttons on single product page).
Took me a while to find out that this does not work because I am not using the Product Description in my theme, I am using the “short product description” instead. If I switch to twentyfifteen AND fill in some words in the product description then the icons appear. If I leave the product description empty OR switch to my own theme the icons disappear.
I tried adding the synved_social_share_markup shortcode to my template like so: `add_action( ‘woocommerce_single_product_summary’, ‘my_add_social_media’, 49 );
function my_add_social_media() {
echo do_shortcode( ‘synved_social_share_markup()’ ) ;
}’
The shortcode appears in my page but no icons.
Any idea how to solve this?
Thanks!