VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: ToBit1 on January 15, 2014, 01:21:55 AM

Title: I need product page custom fields without price
Post by: ToBit1 on January 15, 2014, 01:21:55 AM
I' don't want that the price show in the custom fields. See graphic: http://screencast.com/t/rJAziCuK

How it's that possible. I don't found a topic for that. And it's not loaded in the Template?

Joomla! 2.5.16
VM 2.0.26a

Thank you.
Title: Re: I need product page custom fields without price
Post by: balai on January 15, 2014, 10:05:29 AM
I don't think that there is a setting for that.
You will have to hack the file that creates the output for the custom fields

Look at the function getProductCustomsFieldCart
of the file: administrator\components\com_virtuemart\models\customfields.php
Title: Re: I need product page custom fields without price
Post by: ToBit1 on January 16, 2014, 21:03:44 PM
Thank you. That helped.

Simply change

return $price;

to

return '';

in the file that you say.