Advertisement
swte

Untitled

May 24th, 2019
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ////checkbox ellenorzes
  2. add_action( 'woocommerce_add_to_cart', 'bbloomer_store_gift', 10, 3 );  
  3. function bbloomer_store_gift( $cart_item_key, $product_id, $quantity ) {
  4.       $free_product_id = 8692;
  5.  
  6.       if( isset( $_POST['is-gift'] ) && $_POST['is-gift'] == "igen" && $product_id != $free_product_id ) {
  7.           WC()->cart->add_to_cart( $free_product_id, $quantity );
  8.       }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement