我刚刚开始使用Woocommerce,我想要的一件事就是改变旧价格的位置和新的折扣价格。我现在拥有的是你首先看到旧价格然后是折扣价格。如果你能帮助我解决这个问题,我将非常感激。
答案 0 :(得分:0)
/**
*
* Code used to change the price order in WooCommerce
*
* */
function mycustom_woocommerce_price_html($price, $product) {
return preg_replace('@(<del>.*?</del>).*?(<ins>.*?</ins>)@misx', '$2 $1', $price);
}
add_filter('woocommerce_get_price_html', 'mycustom_woocommerce_price_html', 100, 2);
请将此代码放入活动主题的functions.php
中