Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ibrahim-kardi/77e6b8d14b12150681bf7ff265710859 to your computer and use it in GitHub Desktop.
Save ibrahim-kardi/77e6b8d14b12150681bf7ff265710859 to your computer and use it in GitHub Desktop.
add to cart woocommerce product list
<?php global $woocommerce;
$items = $woocommerce->cart->get_cart();
foreach($items as $item => $values) {
$_product = wc_get_product( $values['data']->get_id());
echo "<b>".$_product->get_title().'</b> <br> Quantity: '.$values['quantity'].'<br>';
$price = get_post_meta($values['product_id'] , '_price', true);
echo " Price: ".$price."<br>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment