如果在特定产品上使用优惠券,我该如何更改统一费率运费?

时间:2014-08-05 23:02:55

标签: woocommerce

如果在特定产品上使用优惠券,我如何更改统一费率?

由于我使用的是以下代码,但未找到任何获得当前优惠券价值的解决方案。

   add_action( 'woocommerce_before_cart', 'apply_matched_coupons' );

   function apply_matched_coupons() {
   global $woocommerce;

  echo $coupon_code = 'custom14'; // your coupon code here
  $code='custom';



      if ( $woocommerce->cart->has_discount( $coupon_code ) ) return;

      $the_coupon = new WC_Coupon( $coupon_code );

     if (  $the_coupon->id ) {echo "here".$the_coupon->id;
       $woocommerce->cart->add_discount( $code );

         } 
           } 

任何帮助都会得到满足,谢谢。

0 个答案:

没有答案