
Originally Posted by
Kevin205
Has anyone resolved or addressed this issue?
I think I solved the tax problem
In includes/templates/YOUR_TEMPLATE/sideboxes/tpl_dynamic_filter.php find
PHP Code:
if ($end < $max) $text = $currency_symbol . round($start * $conversion_rate) . ' -- ' . $currency_symbol . round($end * $conversion_rate);
else $text = $currency_symbol . round($start * $conversion_rate) . ' and over';
and replace with
PHP Code:
if ($end < $max)
{
$text = $currency_symbol . round((zen_add_tax($start, $products_tax)) * $conversion_rate) . ' -- ' . $currency_symbol . round((zen_add_tax($end, $products_tax)) * $conversion_rate);
}
else
{
$text = $currency_symbol . round((zen_add_tax($start, $products_tax)) * $conversion_rate) . ' and over';
}
It works for me, but some further testing is needed, before releasing an update for this module
If this works, the next step is to replace the hard-coded text for language defines, to make this mod multilingual
Bookmarks