Skip to content

Instantly share code, notes, and snippets.

@stefanbc
Created July 23, 2014 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefanbc/09b3754a39fbd54f69e0 to your computer and use it in GitHub Desktop.
Save stefanbc/09b3754a39fbd54f69e0 to your computer and use it in GitHub Desktop.
Automatically add product to cart, on Woocommerce.
<?php
// Add item to cart on visit
add_action( 'init', 'add_product_to_cart' );
function add_product_to_cart() {
if ( ! is_admin() ) {
global $woocommerce;
$product_id = THE_PRODUCT_ID;
$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 );
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment