Deprecated: WC_Abstract_Legacy_Order::get_product_from_item is deprecated since
-
I am facing this error in WooCommerce Checkout page in my local development site, not able to provide the link.
Deprecated: WC_Abstract_Legacy_Order::get_product_from_item is deprecated since version 4.4.0! Use $item->get_product() instead. in C:\Utilities\laragon\www\arteescorp\wp-includes\functions.php on line 4773
Then I investigated and found that the following file is the problem.
C:\Utilities\laragon\www\arteescorp\wp-content\plugins\jetpack\modules\woocommerce-analytics\classes\class-jetpack-woocommerce-analytics-universal.php (1 hit)
Line 283: $product = $order->get_product_from_item( $order_item );I went ahead and changed line 283 to this and problem went away, please fix the plugin to take care of this issue.
Line 283: $product = $order_item->get_product();
Wanted to report as it could be helpful for others.
Thanks.
- The topic ‘Deprecated: WC_Abstract_Legacy_Order::get_product_from_item is deprecated since’ is closed to new replies.