Advertisement
wpgenie

Change bid now text on specific page

Jun 30th, 2017
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. add_filter( 'woocommerce_product_add_to_cart_text' , 'custom_woocommerce_product_add_to_cart_text' );
  2.  
  3. function custom_woocommerce_product_add_to_cart_text($text) {
  4.     global $product;
  5.  
  6.     $product_type = $product->get_type();
  7.     if($product_type == 'auction' && is_page(194)){
  8.         return 'New bid text';
  9.     };
  10.  
  11.     return $text;
  12.  
  13.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement