php - WooCommerce 条件自定义字段(如果购物车中的产品类别)

标签 php wordpress woocommerce conditional-statements custom-fields

好吧,我被难住了。我搜索并阅读了几篇文章,包括相关文章 Checking products in cart based on category name woocommerce?我从那里导出了大部分代码,并且 Woocommerce - Add filter to display (or hide) custom checkout field if product ID == #这是特定于产品 ID 的,而不是类别 ID 的。

当且仅当目标类别 ID(本例中为 237)位于购物车中时,我想显示 sdc_custom_checkout_field。

我尝试注释掉 sdc_custom_checkout_field 函数并使用如下所示的简单测试,但一直得到“不!”,所以我认为查询不正确。

add_action( 'woocommerce_before_order_notes', 'sdc_custom_checkout_field' );

function sdc_custom_checkout_field( $checkout ) {

 //Check if Product in Cart
 //$product_in_cart = check_product_in_cart();

 //Product is in cart so show additional fields
 if ( $product_in_cart === true ) {
 echo '<div id="my_custom_checkout_field"><h3>' . __( 'Duplicate Card Information' . '</h3><br>');

 woocommerce_form_field( 'dupecard_location', array(
 'type'  => 'text',
 'class' => array( 'dupecard-location form-row-wide' ),
 'label' => __( 'Course Location' ),
 ), $checkout->get_value( 'dupecard_location' ) );

 woocommerce_form_field( 'dupecard_instructor', array(
 'type'  => 'text',
 'class' => array( 'dupecard-instructor form-row-wide' ),
 'label' => __( 'Instructor Name' ),
 ), $checkout->get_value( 'dupecard_instructor' ) );

 woocommerce_form_field( 'dupecard_requestor_name', array(
 'type'  => 'text',
 'class' => array( 'dupecard-requestor-name form-row-wide' ),
 'label' => __( 'Requestor Name' ),
 ), $checkout->get_value( 'dupecard_requestor_name' ) );

 woocommerce_form_field( 'dupecard_requestor_email', array(
 'type'  => 'text',
 'class' => array( 'dupecard-requestor-email form-row-wide' ),
 'label' => __( 'Requestor Email' ),
 ), $checkout->get_value( 'dupecard_requestor_email' ) );

  woocommerce_form_field( 'dupecard_requestor_phone', array(
 'type'  => 'text',
 'class' => array( 'dupecard-requestor-phone form-row-wide' ),
 'label' => __( 'Requestor Phone' ),
 ), $checkout->get_value( 'dupecard_requestor_phone' ) );

 echo '</div>';
 }
}

function check_product_in_cart() {
//Check to see if user has product in cart
global $woocommerce;

//assign default negative value 
$product_in_cart = false;

// start cart items fetch loop

foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) {
    $_product = $values['data'];
    $terms = get_the_terms( $_product->id, 'product_cat' );

    // second level loop search, in case some items have several categories

    $cat_ids = array();

    foreach ($terms as $term) {
        $cat_ids[] = $term->term_id;
    }

    if(in_array(237, (array)$cat_ids)) {

      //category is in cart!
       $product_in_cart = true;
    }
}

return $product_in_cart;
}

这是测试片段:

if ($item_in_cart === true) {echo 'YES';}
else {echo 'Nope!';}

我也换了

$item_in_cart

$product_in_cart

但这没有什么区别。

************ 编辑@PRAFULLA ********** 的回复

@Prafulla - 感谢您的投入。我很感激。我修改了我的代码片段如下,合并了你的代码片段,但无法让它工作。我是 PHP 新手,所以,这并不奇怪。您还有其他建议吗?

 add_action( 'woocommerce_before_order_notes', 'sdc_custom_checkout_field' );

 function sdc_custom_checkout_field( $checkout ) {

 //Check if Product in Cart
 $your_product_category = is_category_in_cart();

 //Product is in cart so show additional fields
 if ( $your_product_category === true ) {
 echo '<div id="my_custom_checkout_field"><h3>' . __( 'Duplicate Card Information' . '</h3><br>');

 woocommerce_form_field( 'dupecard_location', array(
 'type'  => 'text',
 'class' => array( 'dupecard-location form-row-wide' ),
 'label' => __( 'Course Location' ),
 ), $checkout->get_value( 'dupecard_location' ) );

 woocommerce_form_field( 'dupecard_instructor', array(
 'type'  => 'text',
 'class' => array( 'dupecard-instructor form-row-wide' ),
 'label' => __( 'Instructor Name' ),
 ), $checkout->get_value( 'dupecard_instructor' ) );

 woocommerce_form_field( 'dupecard_requestor_name', array(
 'type'  => 'text',
 'class' => array( 'dupecard-requestor-name form-row-wide' ),
 'label' => __( 'Requestor Name' ),
 ), $checkout->get_value( 'dupecard_requestor_name' ) );

 woocommerce_form_field( 'dupecard_requestor_email', array(
 'type'  => 'text',
 'class' => array( 'dupecard-requestor-email form-row-wide' ),
 'label' => __( 'Requestor Email' ),
 ), $checkout->get_value( 'dupecard_requestor_email' ) );

  woocommerce_form_field( 'dupecard_requestor_phone', array(
 'type'  => 'text',
 'class' => array( 'dupecard-requestor-phone form-row-wide' ),
 'label' => __( 'Requestor Phone' ),
 ), $checkout->get_value( 'dupecard_requestor_phone' ) );

 echo '</div>';
 }
}

function is_category_in_cart( $your_product_category = 237 ){
global $woocommerce;
$products_in_cart = $woocommerce->cart->get_cart();
$product_types_in_cart = array_column( $products_in_cart, 'data' );
//if (  $product_types_in_cart[0]->product_type == 'subscription' ) { this is what I have tested 
if (  $product_types_in_cart[0]->product_cat == $your_product_category ) {
    return true;
}
return $your_product_category;
}

最佳答案

经过大量工作、研究以及另一个网站上的一些付费帮助的帮助,这是工作结果:

// Add the field to the checkout

add_action( 'woocommerce_before_order_notes', 'sdc_custom_checkout_field' );

function sdc_custom_checkout_field( $checkout ) {
    if( check_product_category() ){
        echo '<div id="sdc_checkout_field"><h3>' . __( 'Duplicate Card Information' . '</h3><br>');

        woocommerce_form_field( 'dupecard_location', array(
            'type'  => 'text',
            'required'  => true,
            'class' => array( 'dupecard-location form-row-wide' ),
            'label' => __( 'Course Location' ),
        ), $checkout->get_value( 'dupecard_location' ) );

        woocommerce_form_field( 'dupecard_instructor', array(
            'type'  => 'text',
            'required'  => true,
            'class' => array( 'dupecard-instructor form-row-wide' ),
            'label' => __( 'Instructor Name' ),
        ), $checkout->get_value( 'dupecard_instructor' ) );

        woocommerce_form_field( 'dupecard_requestor_name', array(
            'type'  => 'text',
            'required'  => true,
            'class' => array( 'dupecard-requestor-name form-row-wide' ),
            'label' => __( 'Requestor Name' ),
        ), $checkout->get_value( 'dupecard_requestor_name' ) );

        woocommerce_form_field( 'dupecard_requestor_email', array(
            'type'  => 'text',
            'required'  => true,
            'class' => array( 'dupecard-requestor-email form-row-wide' ),
            'label' => __( 'Requestor Email' ),
        ), $checkout->get_value( 'dupecard_requestor_email' ) );

        woocommerce_form_field( 'dupecard_requestor_phone', array(
            'type'  => 'text',
            'required'  => true,
            'class' => array( 'dupecard-requestor-phone form-row-wide' ),
            'label' => __( 'Requestor Phone' ),
        ), $checkout->get_value( 'dupecard_requestor_phone' ) );
        echo '</div>';
    }
}

function check_product_category(){
    foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
        $product_id   = apply_filters( 'woocommerce_cart_item_product_id', $cart_item['product_id'], $cart_item, $cart_item_key );  
        if( is_category_in_cart( $product_id ) ){
            return  true;       
        }
    }
    return false;
}

function is_category_in_cart( $product_id ){
    return has_term( 237,'product_cat', get_post( $product_id ) );
}

/*Save to DB as post meta*/
add_action( 'woocommerce_checkout_update_order_meta',                  'my_custom_checkout_field_update_order_meta' );

function my_custom_checkout_field_update_order_meta( $order_id ) {
    if ( ! empty( $_POST['dupecard_location'] ) ) {
    update_post_meta( $order_id, 'dupecard_location', sanitize_text_field( $_POST['dupecard_location'] ) );
    }
    if ( ! empty( $_POST['dupecard_instructor'] ) ) {
    update_post_meta( $order_id, 'dupecard_instructor', sanitize_text_field( $_POST['dupecard_instructor'] ) );
    }
    if ( ! empty( $_POST['dupecard_requestor_name'] ) ) {
    update_post_meta( $order_id, 'dupecard_requestor_name', sanitize_text_field( $_POST['dupecard_requestor_name'] ) );
    }
    if ( ! empty( $_POST['dupecard_requestor_email'] ) ) {
    update_post_meta( $order_id, 'dupecard_requestor_email', sanitize_text_field( $_POST['dupecard_requestor_email'] ) );
    }
    if ( ! empty( $_POST['dupecard_requestor_phone'] ) ) {
    update_post_meta( $order_id, 'dupecard_requestor_phone', sanitize_text_field( $_POST['dupecard_requestor_phone'] ) );
    }
}

关于php - WooCommerce 条件自定义字段(如果购物车中的产品类别),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33226691/

相关文章:

jquery - 滚动到顶部平滑过渡不起作用

php - 替代 error_get_last()

php - 普通网站的 Wordpress 主题

javascript - 基于图像方向自动应用高度/宽度属性的 CSS/Javascript 解决方案

WordPress:如何根据 URL 使用不同的模板提供相同的内容

javascript - WordPress WooCommerce : Target successful add to cart action

php - WordPress 批量产品上传 (woocommerce) - 650K

php - 子类别中的 woocommerce-products-header - 删除标题图片

php - 无法从 mysql varchar 中获取 json 但 int

php - mysql - 最快的搜索