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?
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
perfect, thank's