Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #239157

    Bill K
    Participant

    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!

    #239271

    Zeshan
    Member

    Hi 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.

    #240157

    Bill K
    Participant

    Perfecto. Thx!

    #240234

    Zeshan
    Member

    You’re welcome! 🙂