Announcement

Collapse
No announcement yet.

How can I have a list of checkboxes for people to click on to select which product..

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How can I have a list of checkboxes for people to click on to select which product..

    How can I have a list of checkboxes for people to click on to select which products they want?

    v7 and earlier

    1) Change your 'Shopping Mode' (in 'Design | Options | Shop Defaults') to 'Quantity on Product Page' and tick 'Single Add to Cart Button per page'

    2) Use the following code for a new product layout template, to be used for your products which you want to appear in a compact way with checkboxes:

    NETQUOTEVAR:ENDSEPARATOR
    NETQUOTEVAR:PRODUCTFORMBEGIN
    <tr>
    <td colspan="3">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td valign="top">NETQUOTEVAR:PRODUCTNAME</td>
    <td align="right" valign="top">NETQUOTEVAR:PRODUCTPRICE</td>
    <td align="right" valign="top">
    <!-- NETQUOTEVAR:PRODUCTQUANTITY -->
    <input type="checkbox" name="Q_NETQUOTEVAR:PRODUCTREFERENCE" value="1">
    </td>
    </tr>
    </table>
    </td>
    </tr>
    NETQUOTEVAR:PRODUCTFORMEND
    NETQUOTEVAR:NEXT
Working...
X