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

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

當(dāng)定義的產(chǎn)品是 WooCommerce 購(gòu)物車時(shí)添加折扣

當(dāng)定義的產(chǎn)品是 WooCommerce 購(gòu)物車時(shí)添加折扣

PHP
慕桂英4014372 2023-07-08 20:52:10
我試圖為兩種產(chǎn)品都在購(gòu)物車中時(shí)設(shè)置折扣,無論其中還有其他什么產(chǎn)品。到目前為止,所需要的只是數(shù)組中的兩個(gè)之一。add_action( 'woocommerce_cart_calculate_fees', 'discount_for_ab_products' );function discount_for_ab_products( $cart ) {$product_ids = array(34,35);    foreach ($product_ids as $product_id => $product) {    $product_cart_id = WC()->cart->generate_cart_id( $product );    $product_ab_in_cart = WC()->cart->find_product_in_cart( $product_cart_id );    if ( $product_ab_in_cart ) {                $discount = $cart->subtotal * 0.1;        $cart->add_fee( __( 'Discount', 'woocommerce' ) , -$discount );        }    }}
查看完整描述

1 回答

?
米脂

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

請(qǐng)嘗試以下操作,當(dāng)所有定義的產(chǎn)品 ID 都在購(gòu)物車中時(shí)(在您的情況下是兩個(gè)),這將提供折扣:


add_action( 'woocommerce_cart_calculate_fees', 'x_products_discount' );

function x_products_discount( $cart ) {

    // Settings below

    $product_ids = array(34, 35); // <== Your defined product Ids

    $percentage  = 10; // <== discount in percentage (10% here)


    $found_ids   = array();

    

    // Loop through cart items

    foreach (WC()->cart->get_cart() as $cart_item ) {

        // Loop through defined product Ids

        foreach( $product_ids as $product_id ) {

            if( in_array( $product_id, array( $cart_item['product_id'], $cart_item['variation_id'] ) ) ) {

                $found_ids[$product_id] = $product_id;

                break;

            }

        }

    }

    

    // Discount part

    if( count( $found_ids ) === count( $product_ids ) ) {

        $cart->add_fee( __( 'Discount', 'woocommerce' ), -( $cart->subtotal * $percentage / 100 ) );

    }

}

代碼位于活動(dòng)子主題(或活動(dòng)主題)的functions.php 文件中。經(jīng)過測(cè)試并有效。


查看完整回答
反對(duì) 回復(fù) 2023-07-08
  • 1 回答
  • 0 關(guān)注
  • 183 瀏覽

添加回答

舉報(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)