Skip to content

Instantly share code, notes, and snippets.

@NickGreen
Last active February 25, 2019 18:11
Show Gist options
  • Save NickGreen/64634b8f03a7fdb22058808904665e45 to your computer and use it in GitHub Desktop.
Save NickGreen/64634b8f03a7fdb22058808904665e45 to your computer and use it in GitHub Desktop.
Automatically add product to cart on that product's page
<?php
/**
* Automatically add product to cart on visit
*/
add_action( 'template_redirect', 'add_product_to_cart' );
function add_product_to_cart() {
$product_ids = array( 128,132,140 ); //replace with your own product ids separated by commas
foreach( $product_ids as $product_id) {
if ( is_product($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 );
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment