Hi 
Quick question how to get rid of the +price in the product options.
Thank you
[attachment cleanup by admin]
			
			
			
				Maybe small help it's in template ? VM php ? or VM configuration ?? 
Thank you
			
			
			
				If its the + you want to remove:
search for $price ="+".$price; in administrator\components\com_virtuemart\models\customfields.php and then comment it out
//$price ="+".$price;
if its the whole price just search the forums as there is a thread on this already
			
			
			
				Thank you for your help.
And to remove price :
$productCustom->text = $productCustom->custom_value.' '. $price;
to this line:
$productCustom->text = $productCustom->custom_value;
 
In the same file.