You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Hello:
What steps need to be taken to disable tax for wholesale users? Thanks.
Offline
This one is quick and dirty: You can mod the {private}/apps/ecom/ECOM_Checkout/ECOM_Checkout.php file to do this. Locate the function cocalctaxes() and right above the comment:
// +-- // | Get the tax country system and home EU VAT country. // +--
Add:
if ($this->globals('core_user.usergroup') == 'wholesale') {return 1;}
Offline
Yep worked like a charm. Thanks.
Offline