- This topic has 2 replies, 2 voices, and was last updated 6 years, 7 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › estore – check if product is in cart
Hi, I’ve been searching for a php function that given a product id tells me if it is already inside the cart or not. Can’t find it. Any suggestions? Thanks!
The context is important here but below is a generic code that can tell you if an item (given the product ID) is in the cart.
$product_id = '2';//The ID of the product to look for
$products = $_SESSION['eStore_cart'];
foreach ($products as $key => $item) {
if ($item['item_number'] == $product_id) {
//The product exists in the cart.
}
}
Thank you! that will work wonderfully