基于WooCommerce中定义的日期阈值的送货方式

时间:2019-02-27 04:50:19

标签: php wordpress woocommerce hook-woocommerce shipping-method

我想启用WooCommerce中的两种运送方式,例如,如果用户在特定日期之前订购,那么我要启用第一运送方式,而当用户订购特定日期之后,则想要启用第二运送方式。谁能告诉我是否有任何插件或代码可以执行此功能?

1 个答案:

答案 0 :(得分:1)

以下代码将根据定义的日期阈值启用其他送货方式。

您将必须在函数中定义以下设置:
-商店时区
-两种送货方式的费率ID为(例如'flat_rate:12'格式)
-日期阈值

代码:

add_filter( 'woocommerce_package_rates', 'free_shipping_disable_flat_rate', 100, 2 );
function free_shipping_disable_flat_rate( $rates, $package ) {

    ## ----- YOUR SETTINGS HERE BELOW  ----- ##

    date_default_timezone_set('Europe/London'); // <== Set the time zone (http://php.net/manual/en/timezones.php)

    $shippping_rates = ['flat_rate:12', 'flat_rate:14']; // <== Set your 2 shipping methods rate IDs
    $defined_date    = "2019-03-05";                     // <== Set your date threshold

    ## ------------------------------------- ##

    $now_timestamp  = strtotime("now"); // Current timestamp in seconds
    $date_timestamp = strtotime($defined_date); // Targeted timestamp threshold

    // 1. BEFORE the specified date (with 1st shipping method rate ID)
    if ( array_key_exists( $shippping_rates[0], $rates ) && $now_timestamp > $date_timestamp ) {
        unset($rates[$shippping_rates[0]]); // Remove first shipping method
    }
    // 2. AFTER the specified date included (with 2nd shipping method rate ID)
    elseif ( array_key_exists( $shippping_rates[1], $rates ) && $now_timestamp <= $date_timestamp ) {
        unset($rates[$shippping_rates[1]]); // Remove Second shipping method
    }

    return $rates;
}

代码在您的活动子主题(或活动主题)的function.php文件上。经过测试,可以正常工作。

  

要使其正常工作,您需要刷新运输的缓存数据:
  1)首先,将此代码粘贴并保存在您的function.php文件中。
  2)在“运输”设置中,输入一个运输区域,然后禁用运输方式并“保存”,然后重新启用它并“保存”。 您已完成。

要获取正确的送货方式费率ID,请使用浏览器工具(在购物车或结帐页面中)检查其单选按钮代码,然后使用 value 属性数据,例如:

<input type="radio" name="shipping_method[0]" data-index="0" id="shipping_method_0_flat_rate12" 
value="flat_rate:12" class="shipping_method" checked="checked">
  

...因此这里是flat_rate:12

中的 value="flat_rate:12"