在 WooCommerce 中检查购物车中的多个产品 ID

Check for multiple product ID's in cart in WooCommerce

我正在使用以下代码来检查产品 ID 是否在购物车中,如果是,请添加额外的结帐字段:

add_action('woocommerce_after_order_notes', 'conditional_checkout_field');

function conditional_checkout_field( $checkout ) {
    echo '<div id="conditional_checkout_field">';

    $product_id = 326;
    $product_cart_id = WC()->cart->generate_cart_id( $product_id );
    $in_cart = WC()->cart->find_product_in_cart( $product_cart_id );

    // Check if the product is in the cart and show the custom field if it is

    if ($in_cart ) {
            echo '<h3>'.__('Products in your cart require the following information').'</h3>';

            woocommerce_form_field( 'custom_field_license', array(
            'type'          => 'text',
            'class'         => array('my-field-class form-row-wide'),
            'label'         => __('License Number'),
            'placeholder'   => __('Placeholder to help describe what you are looking for'),
            ), $checkout->get_value( 'custom_field_license' ));

    }
}

这很好用。但是,如何检查购物车中的多个产品 ID?例如,如果购物车中有 ID 为 326 或 245 的产品,是否显示条件结帐字段?我觉得这可能很简单,但我不确定如何去做。

我对您的函数进行了一些更改,使其适用于许多产品 ID。我还向该字段添加了所需的选项。所以你的代码应该是这样的:

add_action('woocommerce_after_order_notes', 'conditional_checkout_field', 10, 1);
function conditional_checkout_field( $checkout ) {

    // Set here your product IDS (in the array)
    $product_ids = array( 37, 53, 70 );
    $is_in_cart = false;

    // Iterating through cart items and check
    foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item )
        if( in_array( $cart_item['data']->get_id(), $product_ids ) ){
            $is_in_cart = true; // We set it to "true"
            break; // At east one product, we stop the loop
        }

    // If condition match we display the field
    if( $is_in_cart ){
        echo '<div id="conditional_checkout_field">
        <h3 class="field-license-heading">'.__('Products in your cart require the following information').'</h3>';

        woocommerce_form_field( 'custom_field_license', array(
            'type'          => 'text',
            'class'         => array('my-field-class form-row-wide'),
            'required'      => true, // Added required
            'label'         => __('License Number'),
            'placeholder'   => __('Placeholder to help describe what you are looking for'),
        ), $checkout->get_value( 'custom_field_license' ));

        echo '</div>';
    }
}

代码进入活动子主题的 function.php 文件(活动主题或任何插件文件)。

此代码已经过测试并有效。