有什么办法可以颠倒 woocommerce 中“销售价格”和“常规价格”的顺序吗?

问题描述 投票:0回答:2

通常会先显示“常规价格”并带有十字线,然后显示“促销价”。我想颠倒顺序。在谷歌上研究了一下,没有任何效果。有人实施过吗??

woocommerce product
2个回答
2
投票

这是您可以使用的解决方案之一

add_filter('woocommerce_sale_price_html', 'wdm_change_price_text', 10, 2);

function wdm_change_price_text( $price, $this_object ) {
    $display_price       = $this_object->get_display_price();
    $display_regular_price   = $this_object->get_display_price($this_object->get_regular_price());
    $price='<ins>' . wc_price($display_price) . '</ins>' . $this_object->get_price_suffix() . '<del>' . wc_price($display_regular_price) . '</del> ';
    return $price;
}

此外,还有针对不同类型产品的其他过滤器,因此您可能还需要向它们添加该功能。

//woocommerce_variable_sale_price_html
//woocommerce_variation_sale_price_html
//woocommerce_free_sale_price_html

之前价格

enter image description here

使用上述代码定制后

enter image description here

已经测试了对我有用的代码。尝试代码并让我知道这是否满足您的要求。


-1
投票

如何设置 woocommerce 默认价格,如前面的价格图片中所述。请帮助女士。

© www.soinside.com 2019 - 2024. All rights reserved.