This section covers how to add items/products to your order pages for purchasing.
You may use any type of form field such as radio button, drop down, checkboxes.
Lets say you have a product, we'll name "Demo Product" For a checkbox field this is how you set the Product / Item and Price to be purchased:
<input type=checkbox name="item_name" value="Demo Product::10.00" $item_name_Demo_Product1000_checked$> Demo Product 1
The name of the field should always be "item_name" - If you wish to have products to be purchased on additional pages add a number onto the end of that name. Example:
<input type=checkbox name="item_name2" value="Demo Product 2::10.00" $item_name_Demo_Product_21000_checked$> Demo Product 2
The format of the name="" field is as follows:
"Item Name::Price"
To keep the field checked if it was selected you would add this $variable$ reference:
$item_name_Item_Name1000_checked$ For a CheckBox Field
$item_name_Item_Name1000_selected$ For a Radio Button Field
In these $variable$ references, spaces are to be replaced with "_" underscores. Any character other than a-z or 0-9 are to be omitted.