Следующее добавит дополнительных получателей к уведомлению по электронной почте «Новый заказ» на основе категорий ваших продуктов, которые вы определите в индексированном массиве с парами получателей электронной почты / категории продуктов:
add_filter( 'woocommerce_email_recipient_new_order', 'custom_email_recipient_new_order', 10, 2 );
function custom_email_recipient_new_order( $recipient, $order ) {
// Not in backend when using $order (avoiding an error)
if( ! is_a($order, 'WC_Order') ) return $recipient;
// Define the email recipients / categories pairs in the array
$recipients_categories = array(
'email.one@email.com' => 'category-one',
'email.two@email.com' => 'category-two',
'email.three@email.com' => 'category-three',
);
// Loop through order items
foreach ( $order->get_items() as $item ) {
// Loop through defined product categories
foreach ( $recipients_categories as $email => $category ) {
if( has_term( $category, 'product_cat', $item->get_product_id() ) && strpos($recipient, $email) === false ) {
$recipient .= ',' . $email;
}
}
}
return $recipient;
}
Код идетв файле function.php вашей активной дочерней темы (или активной темы).Протестировано и работает.
Примечания:
- Определенные категории продуктов могут быть идентификаторами терминов, слагаемыми слагаемыми или именами терминов.
- Каждая категория продукта должна быть определена в связанных продуктах как has_term (). Условная функция WordPress не обрабатывает родительские термины.
Добавление для обработки родительскогокатегории продуктов:
// Custom conditional function that checks for categories (including parent)
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;
}
// Adding custom recipients based on product categories
add_filter( 'woocommerce_email_recipient_new_order', 'custom_email_recipient_new_order', 10, 2 );
function custom_email_recipient_new_order( $recipient, $order ) {
// Not in backend when using $order (avoiding an error)
if( ! is_a($order, 'WC_Order') ) return $recipient;
// Define the email recipients / categories pairs in the array
$recipients_categories = array(
'email.one@email.com' => 'category-one',
'email.two@email.com' => 'category-two',
'email.three@email.com' => 'category-three',
);
// Loop through order items
foreach ( $order->get_items() as $item ) {
// Loop through defined product categories
foreach ( $recipients_categories as $email => $category ) {
if( has_product_categories( $item->get_product_id(), array( $category ) ) && strpos($recipient, $email) === false ) {
$recipient .= ',' . $email;
}
}
}
return $recipient;
}
Код помещается в файл function.php вашей активной дочерней темы (или активной темы).Протестировано и работает.
Примечание: Категории продуктов могут быть идентификаторами терминов, слагаемыми терминами или названиями терминов.
Похожие: Различные получатели на основе продуктов, проданных в электронном уведомлении WooCommerce