Следующий код проверит наличие определенной категории товара в корзине и временной диапазон .Если определенная категория продукта найдена и , если время выходит за пределы определенного диапазона времени (от 06:00
до 23:59
) , пользовательское уведомление будет отклонено во избежание проверки.
Нет необходимости перенаправлять на корзину при использовании woocommerce_check_cart_items
выделенного крючка.
Дляусловная функция временного диапазона:
- форматированные строки времени начала и окончания должны быть такими, как hh:mm:ss
- вам нужно будет определить часовой пояс (см. список поддерживаемых часовых поясов
// Custom conditional function that checks for parent product categories from a product category slug
function has_parent_term( $product_id, $category_slug ) {
// Convert category term slug to term id
$category_id = get_term_by('slug', $category_slug, 'product_cat')->term_id;
$parent_term_ids = array(); // Initializing
// Loop through the current product category terms to get only parent main category term
foreach( get_the_terms( $product_id, 'product_cat' ) 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;
}
}
return in_array( $category_id, array_unique($parent_term_ids) );
}
// Custom conditional function that checks from a time range
function is_on_time( $start_time, $end_time, $time_zone = 'UTC' ) {
// Set the default time zone (http://php.net/manual/en/timezones.php)
date_default_timezone_set($time_zone);
$from = explode( ':', $start_time ); //
$from_h = isset($from[0]) ? $from[0] : 0; // hours
$from_m = isset($from[1]) ? $from[1] : 0; // minutes
$from_s = isset($from[2]) ? $from[2] : 0; // seconds
$start = mktime( $from_h, $from_m, $from_s, date("m"), date("d"), date("Y"));
$to = explode( ':', $end_time );
$to_h = isset($to[0]) ? $to[0] : 0; // hours
$to_m = isset($to[1]) ? $to[1] : 0; // minutes
$to_s = isset($to[2]) ? $to[2] : 0; // seconds
$end = mktime( $to_h, $to_m, $to_s, date("m"), date("d"), date("Y"));
$now = strtotime("now");
return ( $start >= $now && $end < $now ) ? true : false;
}
// Checking cart items and avoid checkout displaying an error notice
add_action( 'woocommerce_check_cart_items', 'woocommerce_check_cart_quantities' );
function woocommerce_check_cart_quantities() {
$found = false; // Initializing
// Loop through cart items
foreach ( WC()->cart->get_cart() as $cart_item ) {
// Check for product category term and parent term
if ( has_parent_term( $cart_item['product_id'], 't-shirts' ) )
$found = true; // category is found
}
// Checking product category and time
if ( $found && ! is_on_time( '6:00', '23:59', 'Europe/Paris' ) ){
// Avoiding checkout displaying a custom error notice
wc_add_notice( __("Sorry too late, time is now off. You are not allowed to checkout", "woocommerce" ), 'error' );
}
}
Код помещается в файл function.php вашей активной дочерней темы (активной темы). Протестировано и работает.
Когда время истекло, если какой-либо элемент корзины остался доконкретная категория продукта:
1) На странице корзины:
2) ВСтраница оформления заказа:
Дополнение - Таргетинг на дни недели в условном выражении is_on_time()
Тион.
Замените return ( $start >= $now && $end < $now ) ? true : false;
одним из следующих, если хотите:
1) Таргетинг только по воскресеньям (пример):
return ( $start >= $now && $end < $now && date('w') == '0' ) ? true : false;
2) Таргетинг на выходные дни только (пример):
return ( $start >= $now && $end < $now && in_array( date('w'), array('6','0') ) ) ? true : false;
2) Таргетинг на рабочие дни только (пример):
return ( $start >= $now && $end < $now && ! in_array( date('w'), array('6','0') ) ) ? true : false;