php 仅允许在WooCommerce中选定工作日的时间范围内购买

mzsu5hc0  于 2023-04-28  发布在  PHP
关注(0)|答案(1)|浏览(79)

对于一个非营利组织,我需要创建一个函数,首先检查时间,如果时间在范围内,检查是哪一天。他们只允许在给定时间内在TuesdaysThursdaysSaturdays上购买。
我已经尝试了很多东西,* 基于时间的启用/禁用添加到购物车在Woocommerce* 答案启发了我的代码如下:

function opening_hours() {
date_default_timezone_set('Europe/Paris');

    $opening_time = mktime('10', '00', '00', date('m'), date('d'), date('Y'));
    
    $closing_time = mktime('17', '00', '00', date('m'), date('d'), date('Y'));

    $now = time();

    return ($now >= $opening_time && $now <= $closing_time) ? true : false;
}

add_filter( 'woocommerce_variation_is_purchasable', 'disable_purchases_on_closed_days', 10, 2 );
add_filter( 'woocommerce_is_purchasable', 'disable_purchases_on_closed_days', 10, 2 );
function disable_purchases_on_closed_days( $purchasable, $product ) {

    // check if the time is correct for opening hours
    if ( opening_hours() ) {

        // if the time is right, make sure it is one of the correct days (tuesday, thursday or saturday)
        if (date('N') != 2 || date('N') != 4 || date('N') != 6){

            // if not the correct day, disable purchase
            $purchasable = false;

            return $purchasable;
        }
    }
}

add_action( 'woocommerce_check_cart_items', 'cart_and_checkout_opening_hours' );
add_action( 'woocommerce_checkout_process', 'cart_and_checkout_opening_hours' );
function cart_and_checkout_opening_hours() {

    if ( ! opening_hours() ) {

        wc_add_notice( __("The online store is currently closed. You can view products, but purchases are not allowed."), 'error' );
    }
}

add_action( 'template_redirect', 'shop_is_closed_notice' );
function shop_is_closed_notice(){

    if ( ! ( is_cart() || is_checkout() ) && !opening_hours() ) {

        $message = esc_html__('The online store is currently closed. You can view products, but purchases are allowed between x-x.', 'woocommerce' );

        wc_add_notice( '<span class="shop-closed">' . $message . '</span>', 'notice' );
    }
}

但由于某种原因,我不能让它工作。我没有错误,也没有通知,无论我做什么,所有的产品都是不可购买的。

也许有人可以审查代码并给予一些见解?

0dxa2lsx

0dxa2lsx1#

代码中有一些错误和复杂性。尝试以下重新访问的代码:

// Custom conditional function
function is_shop_open() {
    date_default_timezone_set('Europe/Paris');

    $start_time   = mktime('10', '00', '00', date('m'), date('d'), date('Y')); // 10h
    $end_time     = mktime('17', '00', '00', date('m'), date('d'), date('Y')); // 17h
    $now_time     = time();
    $allowed_days = in_array( date('N'), array(2, 4, 6) ); // tuesdays, thursdays and saturdays

    return $allowed_days && $now_time >= $start_time && $now_time <= $end_time ? true : false;
}

add_filter( 'woocommerce_variation_is_purchasable', 'shop_closed_disable_purchases' );
add_filter( 'woocommerce_is_purchasable', 'shop_closed_disable_purchases' );
function shop_closed_disable_purchases( $purchasable ) {
    return is_shop_open() ? $purchasable : false;
}

add_action( 'woocommerce_check_cart_items', 'shop_open_allow_checkout' );
add_action( 'woocommerce_checkout_process', 'shop_open_allow_checkout' );
function shop_open_allow_checkout() {
    if ( ! is_shop_open() ) {
        wc_add_notice( __("The online store is currently closed. You can view products, but purchases are not allowed."), 'error' );
    }
}

add_action( 'template_redirect', 'shop_is_closed_notice' );
function shop_is_closed_notice(){
    if ( ! ( is_cart() || is_checkout() ) && ! is_shop_open() ) {
        wc_add_notice( sprintf( '<span class="shop-closed">%s</span>',
            esc_html__('The online store is currently closed. You can view products. But purchases are allowed between x-x.', 'woocommerce' )
        ), 'notice' );
    }
}

代码进入函数。php文件您的活动子主题(或活动主题)。测试和作品。

相关问题