在Woocommerce中根据产品类别添加自定义结帐字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Woocommerce中根据产品类别添加自定义结帐字段相关的知识,希望对你有一定的参考价值。
我需要根据产品类别添加自定义结帐字段。我发现这个代码适用于产品,但是从特定类别的每个新产品中添加ID都非常耗时。
function is_in_cart() {
// Add your special product IDs here
$ids = array( 12468, 9687, 9693);
foreach( WC()->cart->get_cart() as $cart_item ){
$product_id = version_compare( WC_VERSION, '3.0', '<' ) ? $cart_item['data']->id : $cart_item['data']->get_id();
if( in_array( $cart_item['data']->get_id(), $ids ) )
return true;
}
return false;
}
/**
* Add the field to the checkout
*/
add_action( 'woocommerce_before_order_notes', 'custom_checkout_field', 20 );
function custom_checkout_field( $checkout ) {
if( ! is_in_cart() ){
woocommerce_form_field( 'special_field', array(
'type' => 'textarea',
'class' => array('form-row-wide'),
'label' => pll__('Special text'),
'required' => false,
'label_class' => array('specialfieldclass'),
'clear' => false,
), $checkout->get_value( 'special_field' ));
}
}
如何修改此代码以使用产品类别?
答案
请尝试以下方法来处理产品类别(处理父条款):
// Custom conditional function that handle parent product categories too
function has_product_categories( $product_id, $categories ) {
// Initializing
$parent_term_ids = $categories_ids = array();
$taxonomy = 'product_cat';
// Convert categories term names and slugs to categories term ids
foreach ( $categories as $category ){
if( is_numeric( $category ) ) {
$categories_ids[] = (int) $category;
} elseif ( term_exists( sanitize_title( $category ), $taxonomy ) ) {
$categories_ids[] = get_term_by( 'slug', sanitize_title( $category ), $taxonomy )->term_id;
}
}
// Loop through the current product category terms to get only parent main category term
foreach( get_the_terms( $product_id, $taxonomy ) as $term ){
if( $term->parent > 0 ){
$parent_term_ids[] = $term->parent; // Set the parent product category
$parent_term_ids[] = $term->term_id; // (and the child)
} else {
$parent_term_ids[] = $term->term_id; // It is the Main category term and we set it.
}
}
return array_intersect( $categories_ids, array_unique($parent_term_ids) ) ? true : false;
}
// Custom conditional function that check for product categories
function is_in_cart() {
// HERE your product categories
$categories = array( 'clothing' );
foreach( WC()->cart->get_cart() as $cart_item ){
if( has_product_categories( $cart_item['product_id'], $categories ) )
return true;
}
return false;
}
// Add a checkout field before order notes
add_action( 'woocommerce_before_order_notes', 'custom_checkout_field', 20 );
function custom_checkout_field( $checkout ) {
if( ! is_in_cart() ){
woocommerce_form_field( 'special_field', array(
'type' => 'textarea',
'class' => array('form-row-wide'),
'label' => pll__('Special text'),
'required' => false,
'label_class' => array('specialfieldclass'),
'clear' => false,
), $checkout->get_value( 'special_field' ));
}
}
代码位于活动子主题(或活动主题)的function.php文件中。它应该有效。
以上是关于在Woocommerce中根据产品类别添加自定义结帐字段的主要内容,如果未能解决你的问题,请参考以下文章
自定义特定 WooCommerce 产品类别上的“添加到购物车”按钮
在 WooCommerce 中为特定产品类别自定义“添加到购物车”按钮
在Woocommerce中为特定产品类别使用自定义单一产品模板