VirtueMart Forum

VirtueMart 2 + 3 + 4 => Product creation => Topic started by: primey on December 02, 2015, 14:04:54 PM

Title: delete price from custom fields on Virtuemart 3.0.12
Post by: primey on December 02, 2015, 14:04:54 PM
Hello!

I didn#t found any solution that help me in this and other forums.

So i had customfields on my products and everywhere there is a price +0.00 i ask Dr. Google but i get no solution to solve my problem on Virtuemart 3

Please let me know how can i delete this prices???

Link to my Site: http://www.brauchen.at/pointner/index.php/normalschleifstein

Thanks a lot
Title: Re: delete price from custom fields on Virtuemart 3.0.12
Post by: serafix on January 18, 2016, 19:00:08 PM
Go to:
administrator/components/com_virtuemart/models/customfields.php

Change line 881:

return $price;
to
return;



Title: Re: delete price from custom fields on Virtuemart 3.0.12
Post by: misholini on December 14, 2017, 10:43:28 AM
Thanks a mil Searfix!
That's magic!
Was struggling with it, previously amending: $price ="+".$price; (around line 918) to: $price =""; worked for me, but since update to VM.3.2.8 that never gave effect.
Your solution spared my headaches.