Guest User

Untitled

a guest
Apr 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. add_filter( 'woocommerce_cart_product_subtotal', 'modify_cart_product_subtotal', 10, 4 );
  2. function modify_cart_product_subtotal( $product_subtotal, $product, $quantity, $cart ) {
  3. if ( $product->get_stock_quantity() < $quantity ) {
  4. return $product->get_stock_quantity() * $product->get_price();
  5. }
  6. return $product_subtotal;
  7. }
Add Comment
Please, Sign In to add comment