VirtueMart Forum

VirtueMart 2 + 3 + 4 => Administration & Configuration => Topic started by: biowan on May 16, 2012, 15:49:36 PM

Title: Product pricing "Override checkbox" uncheckable
Post by: biowan on May 16, 2012, 15:49:36 PM
Hi,

In the backend interface, I've checked the checkbox Override in Product pricing. With this action, I can have discount price in the frontend interface.
Now I uncheck the same checkbox in backend and save, the checkbox is always checked. And the discount price is always printed.

How can I do to uncheck this checkbox ???

Thanks for your help.
Title: Re: Product pricing "Override checkbox" uncheckable
Post by: mgolf1 on June 13, 2012, 14:17:30 PM
Did you find a solution already? I had the same problem and I found the solution here: http://forum.virtuemart.net/index.php?topic=102957.0
"This working for me:

Open the file administrator / components / com_virtuemart / tables / product_prices.php line 43

Find:

Code: [Select]

var $ override = null;

Replace with:

Code: [Select]

var $ override = 0;
"