Guest User

Untitled

a guest
May 26th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. add_filter( 'woocommerce_get_price_html', 'my_price_html', 100, 2 );
  3. function my_price_html( $price, $product ){
  4. global $product;
  5. $return_string = $price;
  6. if ( $product->stock_status == 'outofstock' ) {
  7. $return_string = $price .' &nbsp;(Brak w magazynie)';
  8. }
  9. return $return_string;
  10. }
  11. }
Add Comment
Please, Sign In to add comment