Guest User

Untitled

a guest
Nov 21st, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_filter('woocommerce_get_price_html', 'changeFreePriceNotice', 10, 2);
  2.  
  3. function changeFreePriceNotice($price, $product) {
  4. if ( $price == wc_price( 0.00 ) )
  5. return '<span style="color: #4b9db3; font-size: 20px;"><strong>Цена по запросу</strong></span>';
  6. else
  7. return $price;
  8. }
Add Comment
Please, Sign In to add comment