未捕获的错误:调用成员函数 get_shipping_packages()

问题描述

我正在尝试获取用户当前的送货区域,但每次尝试获取时都会出错

// The package. 

// Get cart shipping packages
$shipping_packages = $woocommerce->cart->get_shipping_packages();

// Get the WC_Shipping_Zones instance object for the first package
$shipping_zone = $woocommerce->wc_get_shipping_zone( reset( $shipping_packages ) );

$zone_id   = $shipping_zone->get_id(); // Get the zone ID
$zone_name = $shipping_zone->get_zone_name(); // Get the zone name

// Testing output
echo '<p>Zone id: ' . $zone_id . ' | Zone name: ' . $zone_name . '</p>';

错误信息

Error info

解决方法

有两个问题:

  • $woocommerce 全局变量没有定义(可以用WC()代替),
  • wc_get_shipping_zone() 不是 Woocommerce 方法,而是一个函数。

试试下面的(插件见下文)

// Get cart shipping packages
$shipping_packages = WC()->cart->get_shipping_packages();

// Get the WC_Shipping_Zones instance object for the first package
$shipping_zone = wc_get_shipping_zone( reset( $shipping_packages ) );

$zone_id       = $shipping_zone->get_id(); // Get the zone ID
$zone_name     = $shipping_zone->get_zone_name(); // Get the zone name

// Testing output
echo '<p>Zone id: ' . $zone_id . ' | Zone name: ' . $zone_name . '</p>';

应该可以的


对于插件,试试

global $woocommerce;

// Get cart shipping packages
$shipping_packages = $woocommerce->cart->get_shipping_packages();

// Get the WC_Shipping_Zones instance object for the first package
$shipping_zone = wc_get_shipping_zone( reset( $shipping_packages ) );

$zone_id       = $shipping_zone->get_id(); // Get the zone ID
$zone_name     = $shipping_zone->get_zone_name(); // Get the zone name