tommyosheawebdesign

Change Add To Cart Text Per Category WooCommerce

Nov 14th, 2020 (edited)
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' );    
  2.  
  3. function woo_custom_cart_button_text( $text ) {
  4.     if( has_term( 'your-special-category', 'product_cat' ) ){
  5.         $text = __( 'My Button Text', 'your-plugin' );
  6.     }
  7.     return $text;
  8. }
  9.  
Add Comment
Please, Sign In to add comment