ashishsthanp

WC change Select Option text while variable product

Mar 23rd, 2020
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. function zakra_product_add_to_cart_text( $string ) {
  2.     global $product;
  3.  
  4.     if ( $product->is_type( 'variable' ) ) {
  5.         $string = $product->is_purchasable() ? esc_html__( 'Buy Now', 'zakra' ) : esc_html__( 'Read more', 'zakra' );
  6.     }
  7.  
  8.     return $string;
  9. }
  10. add_filter( 'woocommerce_product_add_to_cart_text', 'zakra_product_add_to_cart_text', 10 );
Advertisement
Add Comment
Please, Sign In to add comment