Most recent edit on 2007-02-26 06:42:52 by KryptronicWebmaster
Additions:
In admin under
Select the SQL Statement: Submit a Raw SQL Statement function then enter these statements (one at a time) in order:
This will provide a drop down with quantities of 1 - 5.
ClickCartPro - Products
Deletions:
In the management interface, go to:
Select the 'SQL Statement: Submit a Raw SQL Statement' function. There, enter these statements in order (one at a time):
This gets you quantities 1 - 5 in a drop down.
Pending Inclusion
Oldest known version of this page was edited on 2007-02-15 20:27:25 by KryptronicWebmaster []
Page view:
Change Product Quantity Detail
In the management interface, go to:
Kryptronic Hybrid X Core > Database: Connections, Backups and Raw Admin > Raw Database Admin
Select the 'SQL Statement: Submit a Raw SQL Statement' function. There, enter these statements in order (one at a time):
Code:
UPDATE khxc_formfields SET TYPE='SELECT-CUSTOM', typeparam='ccp0.cart_quantity' WHERE id='ccp0.prodaddtocart.quantity'
INSERT INTO khxc_selectcustom VALUES('ccp0.cart_quantity.1','ccp0','cart_quantity','1','1',1)
INSERT INTO khxc_selectcustom VALUES('ccp0.cart_quantity.2','ccp0','cart_quantity','2','2',2)
INSERT INTO khxc_selectcustom VALUES('ccp0.cart_quantity.3','ccp0','cart_quantity','3','3',3)
INSERT INTO khxc_selectcustom VALUES('ccp0.cart_quantity.4','ccp0','cart_quantity','4','4',4)
INSERT INTO khxc_selectcustom VALUES('ccp0.cart_quantity.5','ccp0','cart_quantity','5','5',5)
This gets you quantities 1 - 5 in a drop down.
Pending Inclusion