隐藏送货选项 Woocommerce

问题描述 投票:0回答:3

所以我试图根据产品标签隐藏 Woocommerce 中的某些发货方法。我面临的主要问题是我自己缺乏 PHP 知识,所以我在一些非常友好的人的帮助下编写了以下代码:

add_filter( 'woocommerce_available_shipping_methods', 'hide_shipping_based_on_tag' ,    10, 1 );

function check_cart_for_share() {

// load the contents of the cart into an array.
global $woocommerce;
$cart = $woocommerce->cart->cart_contents;

$found = false;

// loop through the array looking for the tag you set. Switch to true if the tag is found.
foreach ($cart as $array_item) {
if (isset($array_item['product_tag']) && $array_item['product_tag'] == "CHOSEN_TAG") { // Replace "CHOSEN_TAG" with what ever tag you want
$found = true;
break;
}
}
return $found;

}

function hide_shipping_based_on_tag( $available_methods ) {

// use the function abve to check the cart for the tag.
if ( check_cart_for_share() ) {

// remove the rate you want
unset( $available_methods['flat_rate'] ); // Replace "flar_rate" with the shipping option that yu want to remove.
}

// return the available methods without the one you unset. 
return $available_methods;

}

我知道这段代码绝不是通用的,因此变量会因情况而异,但也许有人可以告诉我代码中是否有问题。非常感谢

wordpress woocommerce
3个回答
6
投票

毫无疑问,您现在已经对此进行了排序,但您的代码对我来说是一个良好的开始......自从我对它进行排序以来,我已将其发布在下面。您的问题是 woocommerce 购物车数组中没有 Product_tag,因此您必须去获取它。

/* !Hide Shipping Options Woocommerce */

add_filter( 'woocommerce_available_shipping_methods', 'hide_shipping_based_on_tag' ,    10, 1 );

function check_cart_for_share() {

// load the contents of the cart into an array.
global $woocommerce;
$cart = $woocommerce->cart->cart_contents;

$found = false;

// loop through the array looking for the tag you set. Switch to true if the tag is found.
foreach ($cart as $array_item) {
    $term_list = wp_get_post_terms( $array_item['product_id'], 'product_tag', array( "fields" => "names" ) );

    if (in_array("Heavy",$term_list)) { // Replace "Heavy" with what ever tag you want

        $found = true;
        break;
    }
}

return $found;

}

function hide_shipping_based_on_tag( $available_methods ) {

// use the function above to check the cart for the tag.
if ( check_cart_for_share() ) {

    // remove the rate you want
    unset( $available_methods['flat_rate'] ); // Replace "flat_rate" with the shipping option that you want to remove.
}

// return the available methods without the one you unset.
return $available_methods;

}

0
投票

您可以使用 Woocommerce 的 Shipping 类来实现此目的。

这是分步说明。

  • 创建一个运输类别(woocommerce->设置->运输->运输类别)。
  • 将此运输类别与产品相关联(您想要隐藏其运输方式)
  • 使用this片段。 (复制并粘贴到 function.php)。

有关该代码片段的更多信息,请访问此处


0
投票

无需了解 PHP,您就可以轻松隐藏运输方式。有一个有用的插件可以根据各种条件隐藏运输方式或费率。您可以在此处检查Wordpress插件以有条件地隐藏运输方式。

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.