-
AuthorPosts
-
March 31, 2015 at 11:56 am #239157
I found this on a previous thread, which works great to add social sharing buttons to each product page:
/*adding social sharing buttons to woocommerce product pages */ add_action("woocommerce_share", "add_social_sharing_to_product_page"); function add_social_sharing_to_product_page() { echo do_shortcode("[share facebook='true' twitter='true' google_plus='true' pinterest='true' email='true' class='mtl']"); }
But the title says “Share this Post”, as it would on posts. How would I change it so that it says “Share this Product” just for these product pages?
thx!
March 31, 2015 at 3:00 pm #239271Hi Bill,
Thanks for writing in!
In that case, please use following code instead:
/*adding social sharing buttons to woocommerce product pages */ add_action("woocommerce_share", "add_social_sharing_to_product_page"); function add_social_sharing_to_product_page() { echo do_shortcode("[share title='Share this Product' facebook='true' twitter='true' google_plus='true' pinterest='true' email='true' class='mtl']"); }
Hope this helps. 🙂
Thank you.
April 1, 2015 at 1:59 pm #240157Perfecto. Thx!
April 1, 2015 at 4:14 pm #240234You’re welcome! 🙂
-
AuthorPosts