문제

I am developing one website using woo commerce

Client want to enable and flat rate shipping for wholesaler account user and UPS for retailer user.

I do not have any idea about this.

I will be thankful if any body can provide some useful links or code snippet.

도움이 되었습니까?

해결책 2

I got my problem solved using this filter

add_filter( 'woocommerce_available_shipping_methods', 'test_shipping_mehtod_filter' , 1 );
function test_shipping_mehtod_filter( $methods){
 unset($methods['free_shipping']);
 return $methods;
}

Now i just need to add if condition to check user role :)

다른 팁

There is no great way to do this without hacking core Woocommerce, or that is my opinion. Why not supply wholesalers with a coupon code?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top