hello
how can i hide price Without Tax only in category??
in VM 3.0.4
i don`t use custom template.
Do something like this:
Edit components/com_virtuemart/sublayouts/prices.php to remove the price without tax display code eg change
('priceWithoutTax', 'COM_VIRTUEMART_PRODUCT_SALESPRICE_WITHOUT_TAX', $product->prices);
to
('priceWithoutTax');
And save the edited file at (eg) catprice.php
Then edit components/com_virtuemart/sublayouts/products.php to change the sublayout call from
shopFunctionsF::renderVmSubLayout('prices',array('product'=>
to
shopFunctionsF::renderVmSubLayout('catprices',array('product'=>
Then use both files as sublayout template overrides.
Thanks for your help!!!