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

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

按產(chǎn)品類別在購物車中顯示個性化消息,鼓勵您繼續(xù)購物

按產(chǎn)品類別在購物車中顯示個性化消息,鼓勵您繼續(xù)購物

PHP
慕碼人2483693 2023-10-21 17:21:58
使用以下代碼,我可以在購物車中顯示一條消息,鼓勵用戶繼續(xù)購買更多產(chǎn)品,但該消息對于所有產(chǎn)品類別永久顯示,如何使其適用于一個或多個特定類別?謝謝你能幫助我。    add_action( 'woocommerce_before_cart_table', 'woo_add_continue_shopping_button_to_cart_products' );function woo_add_continue_shopping_button_to_cart_products() { echo '<div class="woocommerce-message">'; echo ' <a href="https://midomain.com/" class="button">Continue Shopping →</a> Do you want more products?'; echo '</div>';}
查看完整描述

1 回答

?
忽然笑

TA貢獻(xiàn)1806條經(jīng)驗 獲得超5個贊

您可以創(chuàng)建要顯示“繼續(xù)購物”鏈接的類別數(shù)組,以及購物車中當(dāng)前所有類別的數(shù)組。然后您可以使用array_intersect()來查看兩個數(shù)組之間是否存在匹配。如果是,請顯示鏈接:


add_action( 'woocommerce_before_cart_table', 'woo_add_continue_shopping_button_to_cart_products' );

function woo_add_continue_shopping_button_to_cart_products() {


    // Define categories which should show the keep shopping link

    $keep_shopping = array( 'Music', 'Clothing' );


    // Check categories in the cart

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

        $terms = get_the_terms( $cart_item['product_id'], 'product_cat' );

        if ( !empty($terms) ) {

            foreach ($terms as $key => $term) {

                $order_cats[$term->term_id] = $term->name;

            }

        }

    }


    // Get array of category matches

    $cat_matches = array_intersect( $keep_shopping, $order_cats );

    if ( count( $cat_matches ) > 0 ) {

        // 1 or more matches, show keep shopping link

        printf( '<div class="woocommerce-message"><a href="%s" class="button">Continue Shopping →</a> Do you want more products?</div>', get_permalink( wc_get_page_id( 'shop' ) ) );

    }

}


查看完整回答
反對 回復(fù) 2023-10-21
  • 1 回答
  • 0 關(guān)注
  • 107 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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