debbie,
i do not see how this should affect it....
do you have MAP PRICING enabled?
you can try commenting out that line, and see if that changes things, but i don't think that it will...
Code:
//from:
$price = zen_add_tax($price, $tax_rate);
//to:
//$price = zen_add_tax($price, $tax_rate);
you can also try adding an echo statement just above the tax rate to see if the price that we start off with has the VAT or not:
Code:
echo $products->fields['products_id'] . '------->' . $price . '<br />';
$tax_rate = zen_get_tax_rate($products->fields['products_tax_class_id']);
when you execute the script you will then see prices and we can find out if it is starting off correct.
good luck!
Bookmarks