Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created May 17, 2021 05:26
Show Gist options
  • Select an option

  • Save wbcomdev/588ac88f6715f5f23a3018de6f87cdc3 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/588ac88f6715f5f23a3018de6f87cdc3 to your computer and use it in GitHub Desktop.
/**
* Automatically add product to cart on visit.
*/
function wb_add_product_to_cart() {
if ( ! is_admin() ) {
$product_id = 38; // replace with your own product id.
$found = false;
// check if product already in cart.
if ( sizeof( WC()->cart->get_cart() ) > 0 ) {
foreach ( WC()->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 ) {
WC()->cart->add_to_cart( $product_id );
}
} else {
// if no products in cart, add it.
WC()->cart->add_to_cart( $product_id );
}
}
}
add_action( 'template_redirect', 'wb_add_product_to_cart' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment