Advertisement
eappereira

Checar Quantidade por Status

Oct 22nd, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function checar_quantidade($order_id) {
  2.     $order = new WC_Order( $order_id );
  3.           if($order['product_id'] == 8){
  4.           add_qtd($order['qtd'] );
  5.      }
  6. }
  7. add_action( 'woocommerce_order_status_completed', 'checar_quantidade' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement