News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Get rid of +price in product options.

Started by elfis, January 13, 2013, 17:33:04 PM

Previous topic - Next topic

elfis

Hi

Quick question how to get rid of the +price in the product options.
Thank you



[attachment cleanup by admin]

elfis

Maybe small help it's in template ? VM php ? or VM configuration ??
Thank you

randomdev

#2
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

elfis

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.