What is the best way to implement checkboxes instead of quantity fields for a single addtocart page? We specifically do not want to use components.
thanks
thanks
<input type="checkbox" name="Q_<actinic:variable name="ProductID" />" value="1" />
<input type="checkbox" name="<actinic:variable name="ProductID" />" value="1" />
<input name="Q_<actinic:variable name="ProductID" />" type="checkbox" value="1" />
Comment