Announcement

Collapse
No announcement yet.

Creating Popup

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

    Creating Popup

    What im trying to do is this on one of the sections im trying to make a page with all the images and a little title and i want to when i click it a popup comes up with image, title and a message box comes up in there with the add to cart button and quantity does anyone know how to do this?
    Or to make it when i click the image another page comes up any help will do thx

    #2
    I just need to clarify what you are saying here.

    You want to make a page with a summary of products, and then a link people click on to open a particular product in a larger page, which includes an add to cart button.

    A little tricky but not impossible.

    First of all, you need a very company product layout template that lays out your products in rows. Like this:

    Code:
    NETQUOTEVAR:ENDSEPARATOR
    NETQUOTEVAR:PRODUCTFORMBEGIN
    <tr>
    <td colspan="3">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="250">NETQUOTEVAR:PRODUCTNAME</td>
    <td align="right"width="100">NETQUOTEVAR:PRODUCTPRICE</td>
    <td align="right">NETQUOTEVAR:PRODUCTQUANTITY</td>
    <td align="right">NETQUOTEVAR:ADDTOCARTBUTTON</td>
    </tr>
    </table>
    </td>
    </tr>
    NETQUOTEVAR:PRODUCTFORMEND
    NETQUOTEVAR:NEXT
    You then need to create pop-up windows (using the 'Extended Information' tab) and then follow Norman Rouxel's instructions towards the bottom of http://www.rouxel.cwc.net/actinicstuff.html for putting add to cart buttons into the pop-up windows.

    Comment

    Working...
    X