第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在 WooCommerce 訂單電子郵件通知中顯示使用過(guò)的優(yōu)惠券

在 WooCommerce 訂單電子郵件通知中顯示使用過(guò)的優(yōu)惠券

PHP
當(dāng)年話下 2022-12-23 14:31:20
我有一個(gè)顯示已用優(yōu)惠券的代碼:add_action( 'woocommerce_email_after_order_table', 'add_payment_method_to_admin_new_order', 15, 2 );function add_payment_method_to_admin_new_order( $order, $is_admin_email ) {        if( $order->get_used_coupons() ) {            $coupons_count = count( $order->get_used_coupons() );            $i = 1;            $coupons_list = '';            foreach( $order->get_used_coupons() as $coupon) {                $coupons_list .=  $coupon;                if( $i < $coupons_count )                    $coupons_list .= ', ';                $i++;            }            echo '<p></p>';            echo '<p><strong>Купон:</strong> ' . $coupons_list . '</p>';        } // endif get_used_coupons}以及在 WooCommerce 表行中顯示信息的代碼:add_filter( 'woocommerce_get_order_item_totals', 'bbloomer_add_recurring_row_email', 10, 2 );function bbloomer_add_recurring_row_email( $total_rows, $myorder_obj ) {    $total_rows['recurr_not'] = array(    'label' => __( 'Купон:', 'woocommerce' ),    'value'   => 'blabla'    );return $total_rows;}如何將使用過(guò)的優(yōu)惠券轉(zhuǎn)移到價(jià)值字段?像這樣 'value' => 'used_coupon'
查看完整描述

1 回答

?
MMMHUHU

TA貢獻(xiàn)1834條經(jīng)驗(yàn) 獲得超8個(gè)贊

由于您可以通過(guò)鉤子訪問(wèn)該$order對(duì)象woocommerce_get_order_item_totals,因此您可以以相同的方式應(yīng)用它。


所以你得到:


// After order table

function action_woocommerce_email_after_order_table( $order, $sent_to_admin, $plain_text, $email ) {

    // Get used coupons

    if ( $order->get_used_coupons() ) {

        // Total

        $coupons_count = count( $order->get_used_coupons() );


        // Initialize

        $i = 1;

        $coupons_list = '';


        // Loop through

        foreach ( $order->get_used_coupons() as $coupon ) {

            // Append

            $coupons_list .=  $coupon;


            if ( $i < $coupons_count )

                $coupons_list .= ', ';


            $i++;

        }


        // Output

        echo '<p><strong>Купон:</strong> ' . $coupons_list . '</p>';

    }

}

add_action( 'woocommerce_email_after_order_table', 'action_woocommerce_email_after_order_table', 10, 4 );


// Display on customer orders and email notifications

function filter_woocommerce_get_order_item_totals( $total_rows, $order, $tax_display ) {

    // Get used coupons

    if ( $order->get_used_coupons() ) {

        // Total

        $coupons_count = count( $order->get_used_coupons() );


        // Initialize

        $i = 1;

        $coupons_list = '';


        // Loop through

        foreach ( $order->get_used_coupons() as $coupon ) {

            // Append

            $coupons_list .=  $coupon;


            if ( $i < $coupons_count )

                $coupons_list .= ', ';


            $i++;

        }


        // Output

        $total_rows['recurr_not'] = array(

            'label'     => __( 'Купон:', 'woocommerce' ),

            'value'     => $coupons_list,

        );

    }


    return $total_rows;

}

add_filter( 'woocommerce_get_order_item_totals', 'filter_woocommerce_get_order_item_totals', 10, 3 );



查看完整回答
反對(duì) 回復(fù) 2022-12-23
  • 1 回答
  • 0 關(guān)注
  • 124 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)