How To Get Price Filters With Tax?

product price filters show range without tax. i want show with clean price anyone help me ?

I am afraid, it is not possible in cs-cart. The price calculation will take too much resources and time. Your pages will be loaded very slow

:( any way the just range sliders add eg: *1.18 ( tax is %18) ?

[quote name=‘teosu’ timestamp=‘1425998126’ post=‘207583’]

:( any way the just range sliders add eg: *1.18 ( tax is %18) ?

[/quote]



You can always try :)



Open the design\themes\THEME\templates\blocks\product_filters\components\product_filter_slider.tpl



and replace:


<br />
{$min = $filter.range_values.min}<br />
{$max = $filter.range_values.max}<br />

```<br />
<br />
with<br />
<br />
```php
<br />
{$min = $filter.range_values.min * 1.18}<br />
{$max = $filter.range_values.max * 1.18}<br />

```<br />
<br />
And do not forget to clear cache

let me try mate

slider gets values but when appley results is not correct:)

[quote name='teosu' timestamp='1426063993' post='207650']

slider gets values but when appley results is not correct:)

[/quote]



Please try to enable the Display prices with taxes on category/product pages if the method of calculating taxes is based on a unit's price setting on the Settings → General page