News:

Support the VirtueMart project and become a member

Main Menu

I need product page custom fields without price

Started by ToBit1, January 15, 2014, 01:21:55 AM

Previous topic - Next topic

ToBit1

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.

balai

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

ToBit1

Thank you. That helped.

Simply change

return $price;

to

return '';

in the file that you say.