OK, don't want to go into that cookie thing - so I just hacked the core files.
Added to end of application_top.php
Code:
// get customers group
if($_SESSION['customer_id']) {
global $customers_group;
$customer_group_query = "select gp.group_name
from " . TABLE_CUSTOMERS . " cu
left join " . TABLE_GROUP_PRICING . " gp on cu.customers_group_pricing=gp.group_id
where cu.customers_id = " . $_SESSION['customer_id'];
if($customer_group = $db->Execute($customer_group_query)) {
$customers_group=$customer_group->fields['group_name'];
}
}
And then changed all
Code:
DISPLAY_PRICE_WITH_TAX == 'true'
into
Code:
DISPLAY_PRICE_WITH_TAX == 'true' && $customers_group != 'Reseller'