Skip to content

Instantly share code, notes, and snippets.

@DxDiagDx
Created August 7, 2020 07:33
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 DxDiagDx/b0cd5f1621fba94b71c037b410aa40ad to your computer and use it in GitHub Desktop.
Save DxDiagDx/b0cd5f1621fba94b71c037b410aa40ad to your computer and use it in GitHub Desktop.
WOO: условие вывода, если в корзине есть товар с определённым ID
function bbloomer_find_id_in_cart() {
foreach ( WC()->get_cart() as $cart_item_key => $values) {
$product = $values['data'];
if ( $product->get_id() == 123 ) {
// do something
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment