Hello,
Currently on my site are displayed prices "after reduction" in display by category and in products details :
/index.php/en/products/category
/index.php/en/products/category/myproduct
I would add close to that price, the "standard price", not reduced.
Do you know which files are to change and how?
Thanks for your help.
http://forum.virtuemart.net/index.php?topic=79799.0
plus it is just the price display settings in VM admin
although many commercial templates don't use them/ignore them so compare to the std. template
components\com_virtuemart\sublayouts\prices.php
sorry I use Joomla 3.4.3 and Virtuemart 3.0.9
Thanks for your answer and for the idea.
I modified the category page successfully with this line :
echo <span class="line-through">'.$this->currency->createPriceDiv ('basePriceVariant', '', $product->prices).'</span>';
But for "productdetails" page it doesn't work.
I found the place to make the change (in the file : template/html/com_virtuemart/productdetails/default.php) but the line that I use in category page doesn't work. An idea of what I should write ?
Thnaks for your help.
echo <span class="line-through">'.$this->currency->createPriceDiv ('basePriceVariant', '', $this->product->prices).'</span>'; ??
It works, you are my hero ! ;-) thanks for your help !