- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,我试图创建一种 woocommerce 运输方法,该方法采用购物车小计并收取用户定义的购物车小计百分比作为运费。作为朝着这个目标迈出的第一步,我所做的基本上是这样的
class Subtotal_Percentage_Method extends WC_Shipping_Method {
// to store percentage
private $percentage_rate
// constructor that handles settings
// here is where i start calculation
public function calculate_shipping($packages = array()) {
$cost = $this->percentage_rate * 1000;
add_rate(array(
'id' => $this->id,
'label' => $this->title,
'cost' => $cost
));
}
}
这个有效。但是,当我更改 calculate_shipping 方法以在计算中使用购物车小计时,它不起作用
public function calculate_shipping($packages = array()) {
$subtotal = WC()->cart->subtotal;
$cost = $subtotal * $this->percentage_rate / 100;
add_rate(array(
'id' => $this->id,
'label' => $this->title,
'cost' => $cost
));
}
谁能告诉我我做错了什么?
最佳答案
由于这与运输包裹有关(因为购物车项目可以拆分(划分)为多个运输包裹),因此您需要改用变量 $packages
参数包含在 calculate_shipping()
中方法。
因此,如果不使用 WC_Cart
,您的代码将略有不同。对象方法:
public function calculate_shipping( $packages = array() ) {
$total = $total_tax = 0; // Initializing
// Loop through shipping packages
foreach( $packages as $key => $package ){
// Loop through cart items for this package
foreach( $package['contents'] as $item ){
$total += $item['total']; // Item subtotal discounted
$total_tax += $item['total_tax']; // Item subtotal tax discounted
}
}
add_rate( array(
'id' => $this->id,
'label' => $this->title,
'cost' => $total * $this->percentage_rate / 100,
// 'calc_tax' => 'per_item'
) );
}
代码位于您的事件子主题(事件主题)的 functions.php 文件中。测试和工作。
'cost' => $total * $this->percentage_rate / 100,
经过:
'cost' => ($total + $total_tax) * $this->percentage_rate / 100,
You can see how are made the shipping packages looking to:
WC_Cart
get_shipping_packages()
method source code
If you want to handle also shipping classes and more, check:
WC_Shipping_Flat_Rate
calculate_shipping()
method source code.
关于php - 如何在 WC_Shipping_Method calculate_shipping() 方法中获取购物车小计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63476942/
因此,我试图创建一种 woocommerce 运输方法,该方法采用购物车小计并收取用户定义的购物车小计百分比作为运费。作为朝着这个目标迈出的第一步,我所做的基本上是这样的 class Subtotal
我已经为 WooCommerce 创建了一个送货方式插件:http://pastebin.com/SCsbDnnn 但是,它不起作用并给出以下输出:PHP Fatal error: Class 'W
我已经为 WooCommerce 创建了一个送货方式插件:http://pastebin.com/SCsbDnnn 但是,它不起作用并给出以下输出:PHP Fatal error: Class 'W
我是一名优秀的程序员,十分优秀!