VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: nutastur on March 06, 2013, 23:47:01 PM

Title: crossed price Without Tax
Post by: nutastur on March 06, 2013, 23:47:01 PM
Hey forum!

It's possible to set crossed price Without Tax, example 5.00
components/com_virtuemart/views/category/tmpl/default.php

in default.php file I wrote this code, but price didn't cross???

if (round($product->prices['priceWithoutTax'],$this->currency->_priceConfig['salesPrice'][1]) != $product->prices['salesPrice']) {
   echo '<span class="price-crossed" >' . $this->currency->createPriceDiv ('priceWithoutTax', 'COM_VIRTUEMART_PRODUCT_SALESPRICE_WITHOUT_TAX', $product->prices) . "</span>";

Any solutions?