根据 WooCommerce 中的日期时间隐藏特定的运输方式

Hide specific shipping method depending on day time in WooCommerce

我想创建一个 PHP 代码片段,我会添加到我的 functions.php 文件中,但我不确定如何继续。

2 年前有人问过同样的问题 (Woocommerce - disable certain shipping methods based on time of day),但最终选择了一个可以做到这一点的插件。我已经使用附加组件来获取详细的交付选项,如果使用 php.

可以轻松完成某些事情,我不想仅仅为了这个简单的功能而更改或添加另一个附加组件

如果客户在上午 11 点(网站时区)之后下单,我希望禁用送货方式。

所以我现在有这个代码:

if (date('H') > 11) { 
     $shippingmethod1.disable();
}

谁能给我正确的代码来让它工作?

使用 woocommerce_package_rates 过滤器钩子非常简单。

现在您需要找出您需要定位的运费 ID 参考。为此,您将使用浏览器工具检查所需的送货方式单选按钮 <input> 字段) 以获得如下所示的值:

一旦你得到它,你将在下面的代码中设置它:

add_filter( 'woocommerce_package_rates', 'hide_shipping_method_based_on_time', 10, 2 );
function hide_shipping_method_based_on_time( $rates, $package )
{
    // Set your default time zone (http://php.net/manual/en/timezones.php)
    date_default_timezone_set('Europe/London');
    
    // Here set your shipping rate Id
    $shipping_rate_id = 'local_pickup:13';

    // When this shipping method is available and after 11 AM
    if ( array_key_exists( $shipping_rate_id, $rates ) && date('H') > 11 ) {
        unset($rates[$shipping_rate_id]); // remove it
    }
    return $rates;
}

代码进入您的活动子主题(或活动主题)的 functions.php 文件。已测试并有效。

Clearing shipping caches:

  • You will need to empty your cart, to clear cached shipping data
  • Or In shipping settings, you can disable / save any shipping method, then enable back / save.