VirtueMart Forum

VirtueMart 2 + 3 + 4 => Product pricing => Topic started by: rogy on June 10, 2014, 14:59:57 PM

Title: How to hide the cart variants price in the option dropdown selector?
Post by: rogy on June 10, 2014, 14:59:57 PM
This works for pos. Price -->https://forum.virtuemart.net/index.php?topic=118113.msg400037#msg400037
But i have also negativ Prices, is there any solution?
Title: Re: How to hide the cart variants price in the option dropdown selector?
Post by: seyi on June 11, 2014, 15:13:04 PM
Hello,

In that same solution, after this

$price = strip_tags ($currency->priceDisplay ($calculator->calculateCustomPriceWithTax ($customPrice)));
if ($customPrice >0) {
$price ="+".$price;
}


Add this
$price = '';

That should hide the price for both negative or positive

Title: Re: How to hide the cart variants price in the option dropdown selector?
Post by: rogy on June 11, 2014, 15:36:43 PM
perfect, thank's