Guest User

Untitled

a guest
Jan 17th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. function hoccodetot_oft_custom_get_price_html( $price, $product ) {
  3. if ( !is_admin() && !$product->is_in_stock()) {
  4. $price = '<span class="amount">' . __( 'Liên hệ', 'woocommerce' ) . '</span>';
  5. }
  6. return $price;
  7. }
  8. add_filter( 'woocommerce_get_price_html', 'hoccodetot_oft_custom_get_price_html', 99, 2 );
  9. ?>
Add Comment
Please, Sign In to add comment