5

我正在尝试建立一个 woocommerce 商店,以便具有批发商或设计师角色的用户将自动免税,并且税收从购物车/结帐中消失。我使用动态定价插件为不同的角色提供不同的价格,但没有税收变化的选项。

有人贴出这段代码:

// Place the following code in your theme's functions.php file and replace tax_exempt_role with the name of the role to apply to
add_action( 'init', 'woocommerce_customer_tax_exempt' );
function woocommerce_customer_tax_exempt() {
    global $woocommerce;
    if ( is_user_logged_in() ) {
        $tax_exempt = current_user_can( 'tax_exempt_role');
        $woocommerce->customer->set_is_vat_exempt( $tax_exempt );
    }
}

这似乎在前端工作,但破坏了后端。将它添加到functions.php之后,当我回到管理区域并看到这个:http: //i.imgur.com/nNHMSAZ.png(这只是新的chrome错误页面吗?)

我想不通的另一件事是如何添加 2 个角色而不仅仅是一个。

谢谢

4

2 回答 2

7

以下内容适用于用户角色“批发商”。添加到functions.php。

add_filter( 'woocommerce_before_checkout_billing_form', 'prevent_wholesaler_taxes' );

function prevent_wholesaler_taxes() {

     global $woocommerce;

     if( current_user_can('wholesaler')) {

              $woocommerce->customer->set_is_vat_exempt(true);

         } else {

              $woocommerce->customer->set_is_vat_exempt(false);
         }
} //end prevent_wholesaler_taxes

要添加多个用户角色,只需添加到current_user_can();函数中。我认为这可以工作:

 if( current_user_can('wholesaler')||current_user_can('another_user_role') ) 
于 2013-07-26T22:39:02.840 回答
2

我注意到在使用'woocommerce_before_checkout_billing_form'时,您必须先更新或刷新结帐页面,然后必须刷新购物车页面才能使其生效。

使用这些操作钩子“woocommerce_before_cart_contents”“woocommerce_before_shipping_calculator”使免税生效,而无需先刷新结帐页面。

注意:使用与上面相同的回调函数代码。

于 2014-12-17T01:35:14.047 回答