Forked from codeagencybe/gist:a1542fbc5b25cbb295be910afbf15f73
Created
July 9, 2018 12:46
-
-
Save freezvd/f6bb872d095ec907cc0b14187cd5cadc to your computer and use it in GitHub Desktop.
automatically add product to cart when cart total is above certain amount
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
/** | |
* @snippet Automatically add a specific product to cart when cart amount is above certain amount | |
* @author Fabio Tielen // Code Agency // https://codeagency.be | |
* @testedwith Woo 3.3+ | |
*/ | |
add_action( 'template_redirect', 'codeagency_add_product_to_cart' ); | |
function codeagency_add_product_to_cart() { | |
if ( ! is_admin() ) { | |
global $woocommerce; | |
$product_id = 2831; //replace with product id that you want to add to cart | |
$found = false; | |
$cart_total = 30; //minimum cart value required to add the product | |
if( $woocommerce->cart->total >= $cart_total ) { | |
//check if product already in cart | |
if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) { | |
foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) { | |
$_product = $values['data']; | |
if ( $_product->get_id() == $product_id ) | |
$found = true; | |
} | |
// if product not found, add it | |
if ( ! $found ) | |
$woocommerce->cart->add_to_cart( $product_id ); | |
} else { | |
// if no products in cart, add it | |
$woocommerce->cart->add_to_cart( $product_id ); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment