PHP Deprecated: WC_Cart::get_cart_url
-
I am seeing error log entries about using a long-depreciated Woo function.
PHP Deprecated: WC_Cart::get_cart_url is deprecated since version 2.5! Use wc_get_cart_url instead
I found the function call in woocommerce-abandoned-cart/cron/wcal_send_email.php line 256.
$cart_page_link = $woocommerce->cart->get_cart_url();I think it should be:
$cart_page_link = $woocommerce->cart->wc_get_cart_url();
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘PHP Deprecated: WC_Cart::get_cart_url’ is closed to new replies.