【问题标题】:I cannot change the suffix below the product price我无法更改低于产品价格的后缀
【发布时间】:2020-09-26 12:28:23
【问题描述】:

我不了解 php,但我创建了一个代码来显示低于价格的包裹描述。

我的代码正在计算几个小数位,并且没有显示默认货币,在我的例子中,默认货币是雷亚尔 (BR)。

我希望你能帮助我。非常感谢。

//Adiciona sufixo parcelas abaixo do preço
add_filter( 'woocommerce_get_price_suffix', 'add_price_suffix', 99, 4 );

function add_price_suffix( $suffix, $product, $parcel_price) {
    $parcel_price = $product-> get_price() /6;
    $suffix = "<p>Ou até 6x de $parcel_price sem juros</p>". '<br />';
    return $suffix;
}

enter image description here

【问题讨论】:

    标签: html price


    【解决方案1】:

    您可以使用round 函数将价格四舍五入为两位小数:

    $parcel_price = $product-> get_price() /6;
    $parcel_price = round($parcel_price, 2);
    $suffix = "<p>Ou até 6x de $parcel_price sem juros</p>". '<br />';
    return $suffix;
    

    【讨论】:

      猜你喜欢
      • 2021-05-19
      • 1970-01-01
      • 1970-01-01
      • 2015-03-24
      • 2016-05-08
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-04-25
      相关资源
      最近更新 更多