Osclass forums

Support forums => Suggestions => Topic started by: Dude on December 13, 2012, 01:40:20 pm

Title: Add "Free" checkbox next to price on item-post.php
Post by: Dude on December 13, 2012, 01:40:20 pm
It would be cool to have a "Free" checkbox next to the price field on item-post.php
It does not need to be some fancy stuff that require to modify the db structure, it could simply be a JavaScript that places 0 in the field OnClick
By the way, I guess this must me super easy for the ones among you who have some JS skills, so don't hesitate to share some code
Title: Re: Add "Free" checkbox next to price on item-post.php
Post by: Dude on December 13, 2012, 02:13:52 pm
Found it myself

Code: [Select]
<input type="checkbox" onclick="document.getElementById('price').value ='0'" />Free
Title: Re: Add "Free" checkbox next to price on item-post.php
Post by: trains58554 on December 13, 2012, 08:00:42 pm
Hi Dude,

That is a great solution you found and it should work very well.

Jay