Display: Change-Tax Prices And Price All Taxes

Hello,



in the categories I use : List without options, I want to invert the display

An idea thank you



Lucien

inverse.jpg

Please find this file:



design\themes\THEME\templates\blocks\list_templates\products_list.tpl



The following part of code is responsible for the price with taxes:



{assign var="clean_price" value="clean_price_`$obj_id`"}
{$smarty.capture.$clean_price nofilter}




and this one is responsible for the product price:



{assign var="price" value="price_`$obj_id`"}
{$smarty.capture.$price nofilter}




Try to revert them, them clear the cache and check the result.

Hi Ecomlabs

thank you for the answer, but it does not work,

I can not change the position of {assign var=“clean_price” value=“clean_price_$obj_id”}



Lucien

Hi Ecomlabs

this is not the right solution but it works Add




```php


{assign var="price" value="price_`$obj_id`"}
{$smarty.capture.$price nofilter}


{assign var="clean_price" value="clean_price_`$obj_id`"}
{$smarty.capture.$clean_price nofilter}

```

Lucien

affiche.jpg

[quote name='lulu51' timestamp='1419424496' post='200826']

this is not the right solution but it works Add



[/quote]



Thank you for sharing this info!