Last active
December 22, 2020 18:51
-
-
Save vajrasar/7d94016c0efc79f5d6440c7b4431db2d to your computer and use it in GitHub Desktop.
Add gift item to the cart above specific cart value. Ref: https://www.tychesoftwares.com/how-to-automatically-add-a-product-to-your-woocommerce-cart-in-3-different-scenarios/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Automatically adding the product to the cart when cart total amount reach to $500. | |
*/ | |
function aapc_add_product_to_cart() { | |
global $woocommerce; | |
$cart_total = 500; | |
$free_product_id = 111111; // Product Id of the free product which will get added to cart | |
if ( $woocommerce->cart->total >= $cart_total ) { | |
if ( ! is_admin() ) { | |
$found = false; | |
//check if product already in cart | |
if ( sizeof( WC()->cart->get_cart() ) > 0 ) { | |
foreach ( WC()->cart->get_cart() as $cart_item_key => $values ) { | |
$_product = $values['data']; | |
if ( $_product->get_id() == $free_product_id ) | |
$found = true; | |
} | |
// if product not found, add it | |
if ( ! $found ) | |
WC()->cart->add_to_cart( $free_product_id ); | |
} else { | |
// if no products in cart, add it | |
WC()->cart->add_to_cart( $free_product_id ); | |
} | |
} | |
} else { | |
//To remove the Freebie in case user deletes all items from the cart | |
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { | |
if ( $cart_item['product_id'] == $free_product_id ) { | |
WC()->cart->remove_cart_item( $cart_item_key ); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment