我正在开发一种新的运输方法,它可以根据包裹重量、体积和客户的邮政编码计算运费......我在calculate_shipping函数中检索购物车信息时没有遇到任何问题,但是当我尝试从客户那里检索邮政编码时,它似乎返回了一个空值。我如何在运行时检索此信息以计算最终成本?
public function calculate_shipping( $package ) {
GLOBAL $woocommerce;
$items = $woocommerce->cart->get_cart();
$cliente = $woocommerce->customer;
$peso = $woocommerce->cart->cart_contents_weight;
$customer_postcode = $woocommerce->customer->get_shipping_postcode();
}
已解决:
$customer_postcode = get_user_meta( get_current_user_id(), 'shipping_postcode', true );
4条答案
按热度按时间pw9qyyiw1#
ax6ht2ek2#
我认为这是在客户类中处理的
计费邮政编码
WC()->customer->get_postcode();
或
航运邮政编码
WC()->customer->get_shipping_postcode();
sauutmhj3#
qnzebej04#
如果用户已登录(对于注册用户),