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

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

僅將 WooCommerce 可變產(chǎn)品的最后一個(gè)變體保留在購(gòu)物車中

僅將 WooCommerce 可變產(chǎn)品的最后一個(gè)變體保留在購(gòu)物車中

PHP
楊__羊羊 2023-08-06 15:39:40
我有 1 個(gè)具有 3 個(gè)變體的產(chǎn)品,并且我一次只想在購(gòu)物車中添加來自同一可變產(chǎn)品的 1 個(gè)變體,但不想創(chuàng)建帶有錯(cuò)誤消息和死胡同的路障。如果添加相同的產(chǎn)品,我想交換變體。因此,如果客戶將產(chǎn)品 1 變體 1 添加到購(gòu)物車,然后返回并添加相同的產(chǎn)品但不同的變體(產(chǎn)品 1 變體 2),我希望該功能刪除變體 1 并添加變體 2。這是我到目前為止所想到的——我已經(jīng)測(cè)試過并且它有效,但是我不知道是否有更簡(jiǎn)單的方法或者我是否可能會(huì)破壞其他東西add_action( 'woocommerce_add_to_cart', 'check_product_added_to_cart', 10, 6 );function check_product_added_to_cart($cart_item_key, $product_id, $quantity, $variation_id, $variation, $cart_item_data) {    // First Variation    $product_a = 5831;    // Second Variation    $product_b = 5830;    // Third Variation    $product_c = 5832;    // Initialising some variables    $has_item = false;    $is_product_id = false;    foreach( WC()->cart->get_cart() as $key => $item ){        // Check if the item to remove is in cart        if( $item['product_id'] == $product_b || $product_c ){            $has_item = true;            $key_to_remove = $key;        }        // Check if we add to cart the targeted product ID        if( $product_id == $product_a ){            $is_product_id = true;        }    }    if( $has_item && $is_product_id ){        WC()->cart->remove_cart_item($key_to_remove);    }}
查看完整描述

1 回答

?
湖上湖

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

以下僅將可變產(chǎn)品的最后一個(gè)變體“靜默”保留在購(gòu)物車中:


add_action('woocommerce_before_calculate_totals', 'keep_last_variation_from_variable_products', 10, 1 );

function keep_last_variation_from_variable_products( $cart ) {

    if ( is_admin() && ! defined( 'DOING_AJAX' ) )

        return;


    $parent_ids = array();


    foreach (  $cart->get_cart() as $cart_item_key => $cart_item ) {

        // Only for product variations

        if ( $cart_item['variation_id'] > 0 ) {

            // When a variable product exist already in cart

            if( isset($parent_ids[$cart_item['product_id']]) && ! empty($parent_ids[$cart_item['product_id']]) ) {

                // Remove it

                $cart->remove_cart_item($parent_ids[$cart_item['product_id']]);

            }

            // Set in the array the cart item key for variable product id key

            $parent_ids[$cart_item['product_id']] = $cart_item_key;

        }

    }

}

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


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

添加回答

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