Advertisement
swte

Untitled

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