Hi
This can occur when you have two tax rates under the same tax class, since the plug-in can't determine customers zone both are displayed. If you don't want two tax rates for the same tax class, we would recommend you remove one in the admin.
If this is how you intentionally set-up to allow you to tax based on customers' zone, then you will need to make a minor modification to the plug-in so only one rate is displayed.
To limit plug-in to one rate go to the Tax Rates editor in the admin and click the tax you want to apply, then make a note of the tax id in the URL (e.g. tID=2).
Now in fb_browse.php find:
PHP Code:
$Query_TableTax = " left outer join " . TABLE_TAX_RATES ." tr on tr.tax_class_id = p.products_tax_class_id ";
Limit this query to your choosen tax_rate by adding the id " and tax_rates_id= ? ".
E.g. for the Tax ID tID=2 change the query to:
PHP Code:
$Query_TableTax = " left outer join " . TABLE_TAX_RATES ." tr on tr.tax_class_id = p.products_tax_class_id and tax_rates_id=2";
Kind regards
Bright Software Solutions
Bookmarks