根据产品类别向woocommerce添加费用

时间:2014-05-12 17:13:36

标签: wordpress woocommerce

所以我有一个商店,其类别使用"虚拟"产品类型,以避免运输。但是,需要向每个包含该类别产品的订单添加服务费。

通过各种搜索,我找到了不同的方式来全球添加费用,或根据数量添加费用,并尝试使用它来定位通过类别,但似乎无法正确。任何帮助将不胜感激。

function woo_add_cart_fee() {
global $woocommerce;
//Getting Cart Contents. 
$cart = $woocommerce->cart->get_cart();
//find product category
foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) {
    $_product = $values['data'];
        $terms = get_the_terms( $_product->id, 'product_cat' );
    }
  if ($_categoryid == 23){
      $excost = 6;
  } 
  elseif ($_categoryid == 14){
      $excost = 0;
  }     

$woocommerce->cart->add_fee('Service Charge', $excost, $taxable = false, $tax_class = '');
}   
add_action( 'woocommerce_cart_calculate_fees', 'woo_add_cart_fee' );

好的,因为这是我的第一篇文章,我暂​​时无法解答我自己的问题。我终于使用了以下代码片段,但如果您发现问题,请随时改进:

// Add Service Fee to Category
function woo_add_cart_fee() {

$category_ID = '23';
global $woocommerce;

foreach ($woocommerce->cart->cart_contents as $key => $values ) {
    // Get the terms, i.e. category list using the ID of the product
$terms = get_the_terms( $values['product_id'], 'product_cat' );
    // Because a product can have multiple categories, we need to iterate through the list of the products category for a match
    foreach ($terms as $term) {
        // 23 is the ID of the category for which we want to remove the payment gateway
        if($term->term_id == $category_ID){
         $excost = 6;
         }
         }
        $woocommerce->cart->add_fee('Service Charge', $excost, $taxable = false, $tax_class = '');
}
}
add_action( 'woocommerce_cart_calculate_fees', 'woo_add_cart_fee' );

您显然会将类别ID和费用更改为您想要的任何内容。

0 个答案:

没有答案