Skip to content

Instantly share code, notes, and snippets.

@ioniacob
Forked from corsonr/gist:7839908
Created November 11, 2016 23:45
Show Gist options
  • Save ioniacob/c7dd4254292c18506aee05704419d6d8 to your computer and use it in GitHub Desktop.
Save ioniacob/c7dd4254292c18506aee05704419d6d8 to your computer and use it in GitHub Desktop.
Automatically add product to cart on visit - WooCommerce
/*
* Add item to cart on visit
*/
function add_product_to_cart() {
if ( ! is_admin() ) {
global $woocommerce;
$product_id = 64;
$found = false;
//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 );
}
}
}
add_action( 'init', 'add_product_to_cart' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment