Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' );
- function woo_custom_cart_button_text( $text ) {
- if( has_term( 'your-special-category', 'product_cat' ) ){
- $text = __( 'My Button Text', 'your-plugin' );
- }
- return $text;
- }
Add Comment
Please, Sign In to add comment