Before I updated to WC
at 4.3.1 ,I had this code and it worked well
add_action( 'rest_api_init', function () {
register_rest_route( 'px-module-woocommerce', '/px/cart', array(
'methods' => 'POST',
'callback' => array($this,'ajax_add_to_cart'),
));
});
public function ajax_add_to_cart() {
$items = WC()->cart->get_cart();
}
now, WC()->cart->get_cart()
still return
Call to a member function get_cart() on null
I also tried the global value $woocommerce
. But, the result is still the same. Have you any solution? Thanks.
WC_Cart
class and is used through a Singleton in the main class WooCommerce.WC()->cart
=WC_Cart
. – Rollick