亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在 WooCommerce 中設置最低未折扣訂單金額

在 WooCommerce 中設置最低未折扣訂單金額

PHP
jeck貓 2023-05-26 17:43:17
我正在使用“最低訂購量”來要求最低訂購量。如果我有一籃子 50 歐元的商品并且我應用了 10% 的折扣代碼,我無法訂購我的購物車,因為總計為 45 歐元。但我想以低于50 歐元的價格使用折扣碼訂購
查看完整描述

1 回答

?
狐的傳說

TA貢獻1804條經驗 獲得超3個贊

更新:使用以下重新訪問和壓縮的代碼,該代碼使用未折扣的總數:


add_action( 'woocommerce_checkout_process', 'wc_minimum_order_amount' );

add_action( 'woocommerce_before_cart' , 'wc_minimum_order_amount' );


function wc_minimum_order_amount() {

    // Set this variable to specify a minimum order value

    $minimum = 50;


    $total = WC()->cart->total;

    $discount_total = WC()->cart->get_discount_total(); // updated thanks to 7uc1f3r

    $maximized_total = $total + $discount_total;


    if ( $maximized_total < $minimum ) {


        $notice = sprintf( __('Your current order total is %s — you must have an order with a minimum of %s to place your order '), 

            wc_price( $maximized_total ), 

            wc_price( $minimum )

        );


        if( is_cart() ) {

            wc_print_notice( $notice , 'error' );

        } else {

            wc_add_notice( $notice , 'error' );

        }

    }

}

代碼進入您的活動子主題(或活動主題)的 functions.php 文件。測試和工作。


查看完整回答
反對 回復 2023-05-26
  • 1 回答
  • 0 關注
  • 154 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號