亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

當(dāng)購(gòu)物車中只有特定產(chǎn)品時(shí),移除 WooCommerce 結(jié)賬頁(yè)面的條款和條件
P粉245003607
P粉245003607 2023-07-30 10:35:54
0
1
616
<p>我在https://development.pittsburghconcertsociety.org上銷售活動(dòng)門票并接受捐款。當(dāng)有人購(gòu)買門票時(shí),他們必須同意COVID政策。但是當(dāng)有人只“購(gòu)買”捐款,即他們只將捐款產(chǎn)品放入購(gòu)物車時(shí),他們不需要同意COVID政策。WooCommerce支持聊天機(jī)器人提供了以下代碼,但是它不起作用:</p> <pre class="brush:php;toolbar:false;">function hide_terms_for_specific_product( $woocommerce_checkout_fields ) { // Check if the specific product is the only item in the cart if ( WC()->cart ) { $cart_items = WC()->cart->get_cart(); $specific_product_found = false; foreach ( $cart_items as $cart_item ) { // Replace '123' with the ID of the specific product if ( $cart_item['product_id'] == 551 ) { $specific_product_found = true; break; } } // Hide terms and conditions for the specific product if ( $specific_product_found ) { unset( $woocommerce_checkout_fields['terms'] ); } } return $woocommerce_checkout_fields; } add_filter( 'woocommerce_checkout_fields', 'hide_terms_for_specific_product' );</pre> <p>捐款產(chǎn)品的ID是551)??偨Y(jié)一下,如果購(gòu)物車中有門票和捐款產(chǎn)品,我確實(shí)希望有T&C復(fù)選框/要求,但如果購(gòu)物車中只有捐款產(chǎn)品,則不需要T&C。在這種情況下,僅僅隱藏T&C是不夠的,它還必須不是必填項(xiàng)。</p><p>此外,如果我們銷售商品,能夠添加多個(gè)產(chǎn)品ID將會(huì)很好。</p><p><br /></p>
P粉245003607
P粉245003607

全部回復(fù)(1)
P粉344355715

下面的代碼將在購(gòu)物車中只有特定產(chǎn)品時(shí)完全移除T&C要求:

add_filter( 'woocommerce_checkout_show_terms', 'remove_terms_and_conditions_for_specific_unique_item' );
function remove_terms_and_conditions_for_specific_unique_item( $show_terms ) {
    // Replace "123" with the desired product ID
    $targeted_id = 15;
    $cart_items = WC()->cart->get_cart(); // get cart items

    // Check if there is only one item in cart
    if( count($cart_items) > 2 ) {
        return $show_terms;
    }        
    // Check if the targeted product ID is the only item in cart
    if ( reset($cart_items)['product_id'] == $targeted_id ) {
        return false; // Remove terms and conditions field
    }
    return $show_terms;
}

代碼應(yīng)該放置在活動(dòng)子主題的functions.php文件中,或者放置在插件中。已經(jīng)進(jìn)行了測(cè)試并確認(rèn)可以正常工作。

最新下載
更多>
網(wǎng)站特效
網(wǎng)站源碼
網(wǎng)站素材
前端模板