Lextechs:
Is this field in the products database? If it is, it should be quite simple to add it. You only need to edit two files. One is the main quick_updates.php, and the other is in the includes/languages/english (i hope I remember that right) directory. The second file is used to define your column headers. If you are going to add a pricing column, then model it after an existing price column.
I was able to add two fields minimum order quantity and quantity units in about 20 minutes with testing.
BE SURE TO BACK YOUR DATA UP with the plug-in!
With these two fields, it was merely a matter of duplicating the code, then using the appropriate field name in the database (use phpMyAdmin to see structure, or download your MySQL backup and look there) in place of the similar field.
Really a no brainer.
Wish I could say that about Check Boxes (gnashes teeth)!
-Chaddro.
First, I would like to say I really appreciate this Mod. It used to work for me but I can't figure out what caused this formatting problem. Here is my screen shot. Should I delete and re-install the mod?
![]()
hey guys,
i got the problem blow:
Sorry, your security clearance does not allow you to access this resource.
Please contact your site administrator if you believe this to be incorrect.
Sorry for any inconvenience.
what i have to do?
I still can't figure out my layout problem as shown above. I have deleted everything and re-installed. Deleted all instances in my data file and re-installed no luck. Any ideas would be GREATLY appreciated.![]()
I figured it out..I would say thanks for the reply but I never received any.
Even though you haven't received a reply, it is always good to give thanks to everyone who contributes to zen cart. It is even better to contribute to the zen community yourself by posting how you solved your problem. Many of the problems you will need help with in the future will most likely be answered by someone who used to have the same problem.
Hello,
I need add another fields from database, ex.: products_discount_price. But I have problem displaying price with TAX in function updategross() and updatenet().
Original code:
andCode:function updateGross(product) { var taxRate = getTaxRate(product); var inname = "quick_updates_new[products_price][" + product + "]"; var outname = "quick_updates_new[products_taxprice][" + product + "]"; var grossValue = document.forms["quick_updates"].elements[inname].value; if (taxRate > 0) { grossValue = grossValue * ((taxRate / 100) + 1); } document.forms["quick_updates"].elements[outname].value = doRound(grossValue, 2); }
Thanx for help.Code:function updateNet(product) { var taxRate = getTaxRate(product); var inname = "quick_updates_new[products_taxprice][" + product + "]"; var outname = "quick_updates_new[products_price][" + product + "]"; var netValue = document.forms["quick_updates"].elements[inname].value; if (taxRate > 0) { netValue = netValue / ((taxRate / 100) + 1); } document.forms["quick_updates"].elements[outname].value = doRound(netValue, 6); }
JardaR
or display WHOLESALE_PRICE without and with TAX.
JardaR
Bookmarks