小编Rea*_*eke的帖子

WooCommerce 2.6 - 通过达到特定金额触发免费送货时隐藏付费送货

我最近在我的商店更新了WooCommerce 2.6,他们更新了他们的运输系统.在达到特定订单价值并触发免运费之前,我使用此选项隐藏付费送货选项:

/**
 * woocommerce_package_rates is a 2.1+ hook
 */
add_filter( 'woocommerce_package_rates', 'hide_shipping_when_free_is_available', 10, 2 );

/**
 * Hide shipping rates when free shipping is available
 *
 * @param array $rates Array of rates found for the package
 * @param array $package The package array/object being shipped
 * @return array of modified rates
 */
function hide_shipping_when_free_is_available( $rates, $package ) {

    // Only modify rates if free_shipping is present
    if ( isset( $rates['free_shipping'] ) ) {

        // To unset a single …
Run Code Online (Sandbox Code Playgroud)

php wordpress shipping wordpress-plugin woocommerce

5
推荐指数
1
解决办法
3118
查看次数

标签 统计

php ×1

shipping ×1

woocommerce ×1

wordpress ×1

wordpress-plugin ×1