admin管理员组

文章数量:1279085

I am trying to get current cart items from my own plugin using WC_Shortcodes::cart(); this will return cart details in html format.

WC()->cart->get_cart();

code not working. i need only cart data without html format. please advise thank you.

I am trying to get current cart items from my own plugin using WC_Shortcodes::cart(); this will return cart details in html format.

WC()->cart->get_cart();

code not working. i need only cart data without html format. please advise thank you.

Share Improve this question asked Nov 4, 2021 at 6:25 HajaHaja 34 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You can get the value by using the global var

 global $woocommerce;

 $cart_value = floatval( preg_replace( '#[^\d.]#', '', $woocommerce->cart->get_cart_total() ) );

Or

WC()->cart->total

本文标签: pluginsHow to get current cart values using WCShortcodes