На основе " Включить покупки в магазине Woocommerce только в течение дневного диапазона времени " код ответа, изменено для обработки "дней недели" (Так что "Воскресенье" для вас) .
Следующие пункты позволят совершать покупки для определенного элемента (идентификатор продукта 2795
) только по воскресеньям.
Если товар находится в корзине, но его уже нельзя купить , он автоматически удаляется (в корзине или на кассе) с сообщением об ошибке.
Снаружипо воскресеньям на странице продукта отображается сообщение об ошибке, указывающее, что продукт можно приобрести только по воскресеньям.
Вам нужно будет установить часовой пояс в первой функции и ваши конкретные продукты.во второй функции.
Код:
// Utility conditional function that check if day is sunday (returns boolean)
function is_sunday() {
// Set Your shop time zone (http://php.net/manual/en/timezones.php)
date_default_timezone_set('Europe/London');
// If the current day is "sunday" return true (else retun false)
return ( date('w') == 0 ) ? true : false;
}
// Utility function (setting your product IDS in the array)
function sunday_products() {
// HERE your product IDs in the array (need to be coma separated)
return array( 37 );
}
// Enable purchases for specific items on sundays only
add_filter( 'woocommerce_variation_is_purchasable', 'enable_specific_products_on_sundays', 10, 2 );
add_filter( 'woocommerce_is_purchasable', 'enable_specific_products_on_sundays', 10, 2 );
function enable_specific_products_on_sundays( $purchasable, $product ) {
// Enable purchases for specific defined item only on sunday
if( ! is_sunday() && in_array( $product->get_id(), sunday_products() ) )
$purchasable = false;
return $purchasable;
}
// Add a notice in specific products outside sundays
add_action( 'woocommerce_before_single_product', 'filter_before_single_product' );
function filter_before_single_product() {
global $product;
if( ! is_sunday() && in_array( $product->get_id(), sunday_products() ) ) {
wc_print_notice( __( 'This product is only purchasable on sundays', 'woocommerce' ), 'error' );
}
}
// IN CASE OF (but not needed): Cart and checkout validation + error message
add_action( 'woocommerce_check_cart_items', 'conditionally_allowing_checkout' );
add_action( 'woocommerce_checkout_process', 'conditionally_allowing_checkout' );
function conditionally_allowing_checkout() {
if ( ! is_sunday() ) {
// Loop through cart items
foreach( WC()->cart->get_cart() as $cart_item ){
// Check cart items
if( in_array( $cart_item['data']->get_id(), sunday_products() ) ){
wc_add_notice( sprintf(__("%s can be only purchase on sundays.", "woocommerce"), $cart_item['data']->get_name() ), 'error' );
break;
}
}
}
}
Код помещается в файл function.php вашей активной дочерней темы (или активной темы).Проверено и работает.