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.
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
Thank you. That helped.
Simply change
return $price;
to
return '';
in the file that you say.