Tuesday, January 6, 2015

How to Automatically Add Product to Cart on Visit in WooCommerce

Here, check out the tiny WordPress code snippet. Below code automatically adds a product to cart as soon as a user visits your website.

Add Product to Cart in WooCommerce

/*
* Automatically add product to cart on visit
**/
add_action( 'init', 'add_product_to_cart' );
function add_product_to_cart() {
if ( ! is_admin() ) {
global $woocommerce;
$product_id = 120;
$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 );
}
}
}  

0 comments:

Post a Comment