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.
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;
"