$ productPrice = $ 12.00
如果productQuantity = 12,则可能是$ productPrice = $ 99.00
我已经使用过这两个过滤器,而且我还使用了动态定价插件,但也无效
add_action( 'woocommerce_before_calculate_totals', 'cp_add_custom_price' );
add_action('woocommerce_before_cart_table', 'discount_10');
请让我知道这件事是可能的
由于
答案 0 :(得分:1)
我可以使用这个钩子
add_action( 'woocommerce_before_calculate_totals', 'cp_add_custom_price' );
您可以根据数量使用上述挂钩
进行尽可能多的自定义定制$value['data']->price = $customPrice;
根据我的要求,我已经计算了$ customPrice,同时在购物车中添加了12个产品。