点击购物车页面中的更新购物车按钮后,我需要知道哪个挂钩正在运行。
在购物车页面中,我们有4个按钮,update cart
,continue shopping
,proceed to checkout
,apply coupon
。
所以我想知道点击更新购物车按钮后运行哪个挂钩。当客户在更改数量后单击更新购物车按钮时,我必须运行一个特殊功能,可以更改购物车中的总价格,如果满足某些条件,我将更改购物车中的总价格,此总价格需要通过到结帐页面也是
请帮忙。
例如
add_filter('after_update_cart_function_finished', 'special_function');
function special_function(){
$applied_coupons= WC()->cart->get_applied_coupons();
if(!empty($applied_coupons)){
$new_value=WC()->cart->get_cart_subtotal();
$discounted=WC()->cart->coupon_discount_totals;
$discounted_value=array_values($discounted)[0];
$new_value=$new_value-$discounted_value+100;
WC()->cart->set_total_price($new_value);
After this update all post_meta value that regarding to order total
}
}
请参阅我写的以下自定义功能以更改购物车中的值
function action_woocommerce_cart_totals_after_order_total( ) {
$applied_coupons= WC()->cart->get_applied_coupons();
if(!empty($applied_coupons)){
$new_value=WC()->cart->get_cart_subtotal();
$discounted=WC()->cart->coupon_discount_totals;
$discounted_value=array_values($discounted)[0];
$new_value=$new_value-$discounted_value;
if($new_value<100){
$new_value=$new_value+5;
}
?>
<style>
.new-price-new{
color:black;
font-size: 17px;
}
</style>
<script>
jQuery(function($){
$(".order-total .woocommerce-Price-amount.amount").text("£<?php echo $new_value;?>");
$(".order-total .woocommerce-Price-amount.amount").hide();
$(".new-price").remove();
$('.order-total .woocommerce-Price-amount.amount').after('<div class="new-price-new">£<?php echo $new_value;?></div>');;
$(".new-price-new").show();
});
</script>
<?php
}
else{
?>
<script>
jQuery(function($){
$(".new-price-new").remove();
});
</script>
<?php }
};
add_action( 'woocommerce_cart_totals_after_order_total', 'action_woocommerce_cart_totals_after_order_total', 10, 0 );
这个功能有很多问题,我写这个功能是因为某些原因或其他功能woocommerce没有正确计算优惠券价格,所以我写这个功能是为了手动更新购物车中的产品价格。这里是购物车价值超过100我们提供免费送货其他老虎钳我们将添加5。即使这个功能也不能正常工作。
答案 0 :(得分:1)
您应该尝试woocommerce_update_cart_action_cart_updated
动作挂钩。我稍微重新审视了你的代码。试试这个:
add_action( 'woocommerce_update_cart_action_cart_updated', 'on_action_cart_updated', 20, 1 );
function on_action_cart_updated( $cart_updated ){
$applied_coupons = WC()->cart->get_applied_coupons();
if( count( $applied_coupons ) > 0 ){
$new_value = WC()->cart->get_cart_subtotal();
$discounted = WC()->cart->coupon_discount_totals;
$discounted_value = array_values($discounted)[0];
$new_value = $new_value-$discounted_value + 100;
WC()->cart->set_total( $new_value );
if ( $cart_updated ) {
// Recalc our totals
WC()->cart->calculate_totals();
}
}
}
代码进入活动子主题(或活动主题)的function.php文件。未经测试。它可以工作。
更新: WC_Cart
set_total_price()
方法不存在...我已将其替换为现有WC_Cart
set_total()