Skip to content

Instantly share code, notes, and snippets.

@woogist
Created July 5, 2013 14:23
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save woogist/5934881 to your computer and use it in GitHub Desktop.
Save woogist/5934881 to your computer and use it in GitHub Desktop.
Automatically add product to cart on visit depending on cart total value
/*
* goes in theme functions.php or a custom plugin
**/
// add item to cart on visit depending on cart total value
add_action( 'init', 'add_product_to_cart' );
function add_product_to_cart() {
if ( ! is_admin() ) {
global $woocommerce;
$product_id = 2831;
$found = false;
$cart_total = 30;
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->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 );
}
}
}
}
@sicsrmanic
Copy link

Hi,
Thank for sharing it.

I found that User need to press update cart button then only product is added to cart and if user click checkout without updating cart then above code does not add it to cart.

How to fix this issue? any workaround or suggestions?

Thanks again!

@DavidAnderson684
Copy link

On current WC versions, this should use the wp_loaded action, not init... using init results in _doing_it_wrong()

@JulimanS
Copy link

Apparently this code is not working ... Nothing happend... at least on my site. Do you know how could be fix it? Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment