2016-12-16 63 views
2

我已阅读过有关woocommerce的每个主题,但无法找到如何在迷你购物车上显示正常价格而不是折扣价格。大车。 (是的,我想表现出迷你cart.php正常价格)如何在迷你购物车上显示“常规价格”而不是“折扣价格”(Woo)

我想我应该修改迷你cart.php:,但我不知道我可以显示正常价格。

$product_price  = apply_filters('woocommerce_cart_item_price', WC()->cart->get_product_price($_product), $cart_item, $cart_item_key); 

有人能帮助我吗?

回答

0

试试这个:

$product_price  = apply_filters('woocommerce_cart_item_price', WC()->cart->get_regular_price($_product), $cart_item, $cart_item_key); 
+0

很遗憾没有工作:/ –

0

是我用这对迷你cart.php:41和工作!

apply_filters('woocommerce_get_regular_price', $_product->get_regular_price(), $cart_item, $cart_item_key); 
相关问题