Posted - 08/21/2018 : 06:27:39
It should work. Here is the post from Vince where it was introduced https://www.ecommercetemplates.com/support/topic.asp?TOPIC_ID=109004 You will need version v6.8.2 or newer. quote: It is now possible to add your own columns to the Products Quick Update menu by using the parameter... customquickupdate="CustomDBColumn,CustomDBColumn2" ' ASP $customquickupdate="CustomDBColumn,CustomDBColumn2"; // PHP You can specify more than one column by using a comma to separate. The Quick Update menu will display the database column name, unless also specified separated by a colon. For instance... "CustomDBColumn:DB Column 1,CustomDBColumn2:DB Column 2" Finally, the datatype of the column will be assumed to be text, unless also specified separated by a colon as NUM for numeric or CHECK for checkbox / (Yes/No). For example... "CustomDBColumn:DB Column 1:NUM,CustomDBColumn2:DB Column 2:CHECK"
I think Andy just had the "D" there lowercase and I expect it's case sensitive being a database column. try customquickupdate="pID: ID Field" You should be able to name ID Field (in red) anything you like there. EDIT - I just tested it on my dev site - it works perfectly, but so did the version Andy suggested, so for ASP it does not seem to be case sensitive, so perhaps you have an older version there. 
Edited by - dbdave on 08/21/2018 06:35:20
|