Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function zakra_product_add_to_cart_text( $string ) {
- global $product;
- if ( $product->is_type( 'variable' ) ) {
- $string = $product->is_purchasable() ? esc_html__( 'Buy Now', 'zakra' ) : esc_html__( 'Read more', 'zakra' );
- }
- return $string;
- }
- add_filter( 'woocommerce_product_add_to_cart_text', 'zakra_product_add_to_cart_text', 10 );
Advertisement
Add Comment
Please, Sign In to add comment