...
- Where the form is posted to is the checkout URL which is available from the velocity variable $checkoutUrl
- The merchant ID is contained within the form as a hidden input named "merchantId" and the value is pulled from the velocity variable $merchantID
- The item that is to be added to the cart is contained within a hidden input named "ADD" and the value is pulled from the item object using $item.getMerchantItemID()
- The quantity input is named quantity and has a default value of 1 so that the customer doesn't have to change it unless they want more than one.
- There is a submit button for the user to click.
Single item with quantity box and drop down options
Code Block | ||||
---|---|---|---|---|
| ||||
<form method="POST" action="${checkoutUrl}">
<input type="hidden" name="merchantId" value="${merchantID}"/>
<input type="hidden" name="ADD" value="${item.getMerchantItemID()}"/>
Quantity: <input type="text" name="Quantity" value="1"> <br/>
#foreach ($itemOption in $item.getOptions())
#if ($itemOption.getType() == "dropdown")
<input type="hidden" name="OptionName$velocityCount" value="$itemOption.getName()" />
$itemOption.getName() <select name="OptionValue$velocityCount">
#foreach ($dropDownValue in $itemOption.getDropDownValues())
<option>$dropDownValue</option>
#end
</select> <br />
#end
#end
<input type="submit" value="add to cart"/>
</form>
|
Things to note about this code:
- Same code as above, but with additional fields for the options
- Options are passed as two parameters to checkout OptionName# and OptionValue# where # is an incrementing number. We use the $velocityCount variable to automatically assign the number as loop.
- Only drop down options are being displayed in this example.