Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save encoderit-arman/204989e3ed4e67ea78e6f11c3c354441 to your computer and use it in GitHub Desktop.
Save encoderit-arman/204989e3ed4e67ea78e6f11c3c354441 to your computer and use it in GitHub Desktop.
foreach (WC()->cart->get_cart() as $cart_item_key => $cart_item) {
if ($cart_item['product_id'] == $product_id) {
WC()->cart->remove_cart_item($cart_item_key);
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment