Display cart item count in Woocommerce cart widget

后端 未结 2 1914
小蘑菇
小蘑菇 2021-01-24 12:41

I am trying to display the count of the items in the cart at the bottom or top of the Woocommerce cart widget. It seems that by default behaviour the cart widget does not do thi

2条回答
  •  悲&欢浪女
    2021-01-24 13:22

    You aren't echoing WC()->cart->get_cart_contents_count() anywhere, so no, it won't display.

    Wherever in the code you need to display the count, you'll need to use

    echo WC()->cart->get_cart_contents_count();
    

提交回复
热议问题