Help Search our knowledge base:

Index - FAQ - Add, View, and Check Out buttons

 Related Items
1. Why do I get "thank you, your cart has been emptied" after clicking add to cart?

 Details
Frequently Asked
Question (FAQ)

Document Number: 324

Optimize for Printing
E-Mail This Link

 Feedback
This document ...
helps resolve my question or problem.
does not apply to my question or problem.
is inaccurate for my question or problem.
Tips for Adobe PageMill or GoLive

Here is how you should paste HTML into Adobe Pagemill to avoid the problem:
  1. Open your HTML document in PageMill.
  2. Click in PageMill where you would like the HTML to appear.
  3. Across the top menu choose "View", then "Source Code".
  4. Paste the HTML into the window using CTRL-V.


Adobe Pagemill and Adobe GoLive both will combine multiple forms on the same page into a single form, if those forms have the same name.

To avoid this, edit the code the cart provides to include unique names for each button/form:

name="a name"

where "a name" can be any name you wish.

Enter it into the tag:

<form method=post ...>

The end result should look something like:

<form name="a name" method=post ...>

This should correct the problem.