我正在使用Woocommerce动态定价插件,并面临在产品详情页面上显示折扣价的问题。
我有3个用户角色,并按固定价格设定最小和最大产品数量的定价规则。当我使用该特定角色(stockist)登录时,它没有显示折扣价格。
如果我将该产品添加到购物车,则会显示购物车中的折扣价。
有没有办法可以改变产品数量的价格。
我的定价规则为:
1) product quantity is in between 4-16 price is $40
2) product quantity is in between 17-50 price is $39
3) product quantity is in between 51 and more price is $35
我找到了一个代码但是没有使用动态定价规则:
add_action( 'woocommerce_single_product_summary', 'woocommerce_total_product_price', 31 );
function woocommerce_total_product_price() {
global $woocommerce, $product;
// let's setup our divs
echo sprintf('<div id="product_total_price" style="margin-bottom:20px;display:none">%s %s</div>',__('Product Total:','woocommerce'),'<span class="price">'.$product->get_price().'</span>');
echo sprintf('<div id="cart_total_price" style="margin-bottom:20px;display:none">%s %s</div>',__('Cart Total:','woocommerce'),'<span class="price">'.$product->get_price().'</span>');
?>
<script>
jQuery(function($){
var price = <?php echo $product->get_price(); ?>,
current_cart_total = <?php echo $woocommerce->cart->cart_contents_total; ?>,
currency = '<?php echo get_woocommerce_currency_symbol(); ?>';
$('[name=quantity]').change(function(){
if (!(this.value < 1)) {
var product_total = parseFloat(price * this.value),
cart_total = parseFloat(product_total + current_cart_total);
$('#product_total_price .price').html( currency + product_total.toFixed(2));
$('#cart_total_price .price').html( currency + cart_total.toFixed(2));
}
$('#product_total_price,#cart_total_price').toggle(!(this.value <= 1));
});
});
</script>
<?php
}
任何人都可以建议我这样做。
由于