【问题标题】:Get the chosen shipping method cost in Woocommerce在 Woocommerce 中获取所选的运输方式成本
【发布时间】:2018-04-22 09:45:17
【问题描述】:

在 Woocommerce 中,以下内容不会返回任何输出,我不知道为什么。

不能这样相乘吗?

$price = (wc_price($selectedShipping->cost)*1.15);

【问题讨论】:

  • 你能打印出wc_price($selectedShipping->cost)的值吗?

标签: php wordpress woocommerce shipping


【解决方案1】:

尝试这样做:

$temp = ($selectedShipping->cost) * 1.15;
$price = wc_price($temp);

【讨论】:

    猜你喜欢
    • 2020-03-08
    • 1970-01-01
    • 2020-10-08
    • 2017-11-09
    • 2020-11-19
    • 1970-01-01
    • 1970-01-01
    • 2021-01-08
    • 2015-10-29
    相关资源
    最近更新 更多