Answers for "woocommerce display discount code in cart"

0

item count in cart quantitiy woocommerce

function count_item_in_cart() {
    $count = 0;
    foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
        $count++;
    }
    return $count;
}
Posted by: Guest on May-07-2020
0

item count in cart quantitiy woocommerce

function count_item_in_cart() {
    $count = 0;
    foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
        $count++;
    }
    return $count;
}
Posted by: Guest on May-07-2020

Code answers related to "woocommerce display discount code in cart"

Browse Popular Code Answers by Language