gpt4 book ai didi

php - 如何在 woocommerce/wordpress 中编辑价格的输出

转载 作者:行者123 更新时间:2023-12-02 21:41:34 25 4
gpt4 key购买 nike

就像标题所说,我想去掉价格后面的小数。

现在看起来像 8.00,但它应该是 8

我尝试了trim()和substr($price_html,1,1),但什么也没发生

我的代码:

<?php if ( $price_html = $product->get_price_html() ) : ?>
<span class="price">PREIS:<span class="amount">
<?php echo $price_html; ?></span></span><p class="stock-m13"><?php echo $product->get_stock_quantity(); ?>stk.</p>
<?php endif; ?>

有什么想法可以从价格输出中删除 .00(js?操纵 mysqli 查询吗?)

编辑:我的 wp/woocommerce 后端没有“删除零”选项(对于那些会问的人)

danyo 的解决方案:

$price_html = $product->get_price_html();
$new_price = preg_replace('/.00/', '', $price_html);

最佳答案

转到 WooCommerce 设置,向下滚动到定价选项,然后选中“尾随零”选项。

这将删除尾随的零。

编辑

由于某种原因您没有此选项,您可以尝试以下操作:

$price_html = $product->get_price_html();
$new_price = preg_replace('/.00/', '', $price_html);

关于php - 如何在 woocommerce/wordpress 中编辑价格的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20350388/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com