Search   
Home  
Demos  
 

Order Now! Buttons

The Order Now! button will add one item to the cart and take the user directly to the checkout page, bypassing both the Add to Cart page and the View Cart page. This method is best used if you offer only one item, or, if you assume your customer will purchase only the one item in a quantity of one.

Order Now! Demo

How To Setup Order Now!
To setup a product that can be added to the cart and take the user directly to the checkout page, you will need to create a FORM. You may customize the FORM for your own preferences..include a graphic, change the label on the Order Now! button etc. The base code for the FORM is as follows:

<FORM action="http://www.gochargeit.com/youraccountcodehere/link.cgi" method="POST">
<INPUT type="hidden" NAME="prod_code" VALUE="yourproductcodehere">
<INPUT type="submit" VALUE="Order Now!">
<INPUT type="hidden" NAME="checkout" VALUE="1">
</FORM>




To Use A Custom Order Now Graphic
The above code will create a standard gray form Order Now button. If you wish to use a graphic Order Now button instead, use the code below. Be sure to replace the "xxx" with your graphic's dimensions.

<FORM action="http://www.gochargeit.com/youraccountcodehere/link.cgi" method="POST">
<INPUT type="hidden" NAME="prod_code" VALUE="1"<
<INPUT type="image" src="xxx" width="xxx" height="xxx" border=0 alt="Order Now!">
<INPUT type="hidden" NAME="checkout" VALUE="1">
</FORM>