Created
November 6, 2017 06:26
-
-
Save kartikparmar/cc8b24f493d37fd364aea5f70d190864 to your computer and use it in GitHub Desktop.
Adding product to cart based on cart total
This file contains 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; | |
if ( $woocommerce->cart->total >= $cart_total ) { | |
if ( ! is_admin() ) { | |
$free_product_id = 12989; // Product Id of the free product which will get added to cart | |
$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 ); | |
} | |
} | |
} | |
} | |
add_action( 'template_redirect', 'aapc_add_product_to_cart' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment