1

我正在开发一个带有以下插件的网站:

  • WooCommerce
  • WooCommerce 订阅
  • WooCommerce 的 Pakkelabels.dk

“Pakkelabels.dk”是丹麦运营商的包装标签插件。该插件使用标准的 WooCommerce 过滤器和挂钩来添加其他运输方式。

我正在使用混合结帐。购物车总数目前如下所示:

在此处输入图像描述

这是我不想做的

对于经常性订单,我不想将运输方式限制为“DAO Pakkeshop”和“本地取货”(抱歉图片中的丹麦语)。

我已将此添加到functions.php,当特定产品ID(订阅产品)在购物车中时,它会取消设置我不希望拥有的运输方式:

add_filter( 'woocommerce_package_rates', 'hide_shipping_methods_woo_sg', 10, 2 );
function hide_shipping_methods_woo_sg( $rates, $package ) {

    $product_id = get_field('product_auto_cart', 'option');

    if($product_id){
        $product_cart_id = WC()->cart->generate_cart_id( $product_id );
        $in_cart = WC()->cart->find_product_in_cart( $product_cart_id );

        if($in_cart) {
            unset( $rates['pakkelabels_shipping_dao_direct'] );
            unset( $rates['pakkelabels_shipping_gls_private'] );
            unset( $rates['pakkelabels_shipping_gls_business'] );
            unset( $rates['pakkelabels_shipping_gls'] );
            unset( $rates['pakkelabels_shipping_pdk'] );
            unset( $rates['pakkelabels_shipping_postnord_private'] );
            unset( $rates['pakkelabels_shipping_postnord_business'] );
            // unset( $rates['local_pickup:19'] );
        }
        return $rates;
    }
}

我的问题是,这会删除订单和定期订单的运输方式,如图所示。

我需要某种条件,这样我就可以只针对经常性订单运输方式并取消设置这些方式。

我怎样才能做到这一点?

4

1 回答 1

1

好的 - 这是一个简单的修复。WC()->cart->recurring_carts是我需要的条件。我的代码现在看起来像这样:

add_filter( 'woocommerce_package_rates', 'hide_shipping_methods_woo_sg', 10, 2 );
function hide_shipping_methods_woo_sg( $rates, $package ) {

    $product_id = get_field('product_auto_cart', 'option');

    if($product_id){
        $product_cart_id = WC()->cart->generate_cart_id( $product_id );
        $in_cart = WC()->cart->find_product_in_cart( $product_cart_id );

        if($in_cart && WC()->cart->recurring_carts) {
            unset( $rates['pakkelabels_shipping_dao_direct'] );
            unset( $rates['pakkelabels_shipping_gls_private'] );
            unset( $rates['pakkelabels_shipping_gls_business'] );
            unset( $rates['pakkelabels_shipping_gls'] );
            unset( $rates['pakkelabels_shipping_pdk'] );
            unset( $rates['pakkelabels_shipping_postnord_private'] );
            unset( $rates['pakkelabels_shipping_postnord_business'] );
            // unset( $rates['local_pickup:19'] );
        }
        return $rates;
    }
}

对于经常性购物车,上述运输方式现已删除。

我的购物车总数现在看起来像这样:

在此处输入图像描述

于 2018-08-28T12:30:53.080 回答