Ok, several things are wrong.
1. [-- PRODUCT.DisplayOrderingOptions --] just displays "checked" on the page, it doesn't do anything in the template itself.
2. The code from the cookbook is used to replace the order options pulldowns for the product, so trying to use both that code and the tag [-- ORDER_OPTION_MENU COLUMN --] results in a combining of the pull down options and the text fields which is why you get
- Code: Select all
Purple, Line 1, line 1 goes here
Gift box, Line 2, line 2 goes here
(Third Line my Option shows, but the "Line 3, line 3 goes here does not appear)
The Purple and Gift box are options selected from the pulldowns. The text Line #, Line # goes here is coming from the text fields but since they have the same finopt:# as the options from the pulldowns (which you should be able to see if you view the page source) they are combined in the shopping cart.
I haven't tried but it might be able to make some changes and get both to work.
1. Change the 3 finopt# values for the code copied from the cookbook from 0, 1, 2 to 2,3,4
2. Change the 3 in this line
- Code: Select all
<input type="hidden" name="[-- PRODUCT.RecordNumber --]:finoptnum" value="3">
to a 5. This will tell the code there are 5 finopt values, 2 from the pulldown menus and 3 from the cookbook code.
Give that a try and see if it works then.