All the tools that you need to integrate your eCart Payment Solution into your existing website are right here. The eCart provides the basic framework that you need to sell products on the Web, with the potential for customization and integration into your site.
This page provides information on the following:
Quick Links: directing your customers to your cart and checkout
-
-
Before you add the necessary code to your website to link items to your eCart, make sure that you have completed the following steps:
Enter your products into the eCart system using the form provided on the
Products page.
Set your accepted payment methods on the
Payment page.
Determine how your will charge for shipping on the
Shipping page.
Have your cart ID ready. You can find it on the
Home page of your eCart console.
Have your list of product numbers ready as well. Product number or Product ID refers only to the system assigned product ID number and not to the merchant assigned SKU. These numbers are listed in the
Products page, or you may want to download a product report from the
Reports page.
Once you have completed these steps, you will be ready to add eCart capabilities to your existing Website in order to sell your products through the eCart. There are three ways in which to do this.
This method is used when you want to have an “Add to Cart” feature on your website for products that DO NOT have any options (such as color or size choices). This method may also be used if you want your customers to be able to click on a line of text, a single image or a button to purchase the product. You can see an example of this method here.
Here's an example of how to add it in HTML code. Simply copy and paste the code into your Web page and replace the red highlighted sections, “YOUR_CART_ID” with the actual ID of your cart and the item=0001” with the actual number of the product you are linking to.
<a href="https://www.usaecart.com/carts/YOUR_CART_ID/cart.asp?item=0001">
<strong>
<font face="Arial">Add to Cart</font>
</strong>
</a>
This method is used when you want to add the “Add to Cart” feature on your website for products that DO HAVE variable options. Variable options are things that your customer can choose on a product (such as color or size) that WILL NOT affect the cost of the product.
For example, if you sell a t-shirt that comes in blue, red, and green, no matter what color the customer chooses the price remains the same. In your Product Manager you add the t-shirt as a product. You then use a drop down menu to add the color choices. While it is possible to enter each different colored shirt as its own item, using the attribute feature of your eCart may save you time in the long run. You can view an example of this source here.
Here are two examples of Source 2 in HTML code. Simply copy and paste the code into your Web page and replace the red highlighted sections, “YOUR_CART_ID” with the actual ID of your cart, the value=“0001” with the product's ID number, the value=“Add To Cart” with whatever you would like the add to cart button to say, and the various options with the actual options of the product you are linking to.
<form action="https://www.usaecart.com/carts/YOUR_CART_ID/cart.asp" method="get">
<input type="hidden" name="item" value="0001">
<p>
<select NAME="option_system" size="1">
<option selected value="System">System</option>
<option value="Windows 95">Windows 95</option>
<option value="Windows 98">Windows 98</option>
<option value="Windows NT">Windows NT<option>
</select>
<input type="submit" value="Add to cart">
</p>
</form>
<form action=https://www.usaecart.com/carts/YOUR_CART_ID/cart.asp method="get">
<input type="hidden" name="item" value="0012">
<p>
<select NAME="option_case" size="1">
<option selected value="Case Size">Case Size</option>
<option value="Desktop">Desktop</option>
<option value="Tower">Tower</option>
</select>
<br>
<select NAME="option_system" size="1">
<option selected value="System">System</option>
<option value="Windows 95">Windows 95</option>
<option value="Windows 98">Windows 98</option>
<option value="Windows NT">Windows NT</option>
</select>
<br>
<input type="submit" value="Add to cart">
<br>
</p>
</form>
Please note: When you are using method 2, the following are true:
You are using a METHOD GET to the Cart.
The drop down menu names have to be “option_” followed by whatever you want the option to be called such as “option_size” or “option_color.”
Everything is enclosed in a form tag: <form> - </form>.
This method is used if you wish to have Quantity boxes located on your website and/or you wish to give your customer the ability to select multiple products they wish to purchase on one page and then just to push one “Add to Cart” button when they are completed.
Remember, this may be used for one product per button or multiple products per button. To see an example of this method in use, click here.
Here are two examples of Method Three in HTML code. Simply copy and paste the code into your Web page and replace the red highlighted sections, “YOUR_CART_ID” with the actual ID of your cart, name=“Item1” with your item, “Product 1” with the name of the product, the value=“0001” with the product's ID number, and the value=“Add To Cart” with whatever you would like the add to cart button to say.
<form method="POST" action="https://www.usaecart.com/carts/YOUR_CART_ID/cart.asp">
<input type="hidden" name="multi" value="yes">
<input type="hidden" name="count" value="4">
<input type="hidden" name="Item1" value="0001">
<input type="text" name="Quantity1" size="3" value="0">
<font face="Arial" size="2">Product 1</font>
<p>
<input type="submit" value="Add to Cart" name="Submit">
</p>
</form>
<form method="POST" action="https://www.usaecart.com/carts/YOUR_CART_ID/cart.asp">
<input type="hidden" name="multi" value="yes">
<input type="hidden" name="count" value="4">
<input type="hidden" name="Item1" value="0001">
<input type="hidden" name="Item2" value="0002">
<table border="0" cellpadding="3">
<tr>
<td align="center" nowrap>
<input type="text" name="Quantity1" size="3" value="0">
</td>
<td align="center" nowrap>
<font face="Arial" size="2">Product 1</font>
</td>
</tr>
<tr align="center">
<td align="center" nowrap>
<input type="text" name="Quantity2" size="3" value="0">
</td>
<td align="center" nowrap>
<font face="Arial" size="2">Product 2</font>
</td>
</tr>
</table>
<p>
<input type="submit" value="Add to Cart" name="Submit">
</p>
</form>
Please note: when using method three:
You are doing a METHOD POST to the Cart.
Each Text Field Box MUST have the following names: “Quantity1” where the number 1 is sequential for each item.
You must have the following hidden values:
name=“multi” and value=“yes”
name=“count” and value=“Total items per Add Button”
name=“Item1” and value=“First product ID number”
name=“Item2” and value=“Second product ID number” etc.
Make sure that you have an equal number of Item fields and Quantity boxes.
FrontPage Users: You may request special instructions on how to add this code to your Website using step by step instructions for FrontPage 98 or higher. You may send your request via email to support@usaecart.com
Below is a chart of colors and their corresponding hexadecimal codes for use in customizing your website and coordinating your USA ePay elements with the look and feel of your existing site.
|
000000 |
000033 |
000066 |
000099 |
0000CC |
0000FF |
|
003300 |
003333 |
003366 |
003399 |
0033CC |
0033FF |
|
006600 |
006633 |
006666 |
006699 |
0066CC |
0066FF |
|
009900 |
009933 |
009966 |
009999 |
0099CC |
0099FF |
|
00CC00 |
00CC33 |
00CC66 |
00CC99 |
00CCCC |
00CCFF |
|
00FF00 |
00FF33 |
00FF66 |
00FF99 |
00FFCC |
00FFFF |
|
330000 |
330033 |
330066 |
330099 |
3300CC |
3300FF |
|
333300 |
333333 |
333366 |
333399 |
3333CC |
3333FF |
|
336600 |
336633 |
336666 |
336699 |
3366CC |
3366FF |
|
339900 |
339933 |
339966 |
339999 |
3399CC |
3399FF |
|
33CC00 |
33CC33 |
33CC66 |
33CC99 |
33CCCC |
33CCFF |
|
33FF00 |
33FF33 |
33FF66 |
33FF99 |
33FFCC |
33FFFF |
|
660000 |
660033 |
660066 |
660099 |
6600CC |
6600FF |
|
663300 |
663333 |
663366 |
663399 |
6633CC |
6633FF |
|
666600 |
666633 |
666666 |
666699 |
6666CC |
6666FF |
|
669900 |
669933 |
669966 |
669999 |
6699CC |
6699FF |
|
66CC00 |
66CC33 |
66CC66 |
66CC99 |
66CCCC |
66CCFF |
|
66FF00 |
66FF33 |
66FF66 |
66FF99 |
66FFCC |
66FFFF |
|
990000 |
990033 |
990066 |
990099 |
9900CC |
9900FF |
|
993300 |
993333 |
993366 |
993399 |
9933CC |
9933FF |
|
996600 |
996633 |
996666 |
996699 |
9966CC |
9966FF |
|
999900 |
999933 |
999966 |
999999 |
9999CC |
9999FF |
|
99CC00 |
99CC33 |
99CC66 |
99CC99 |
99CCCC |
99CCFF |
|
99FF00 |
99FF33 |
99FF66 |
99FF99 |
99FFCC |
99FFFF |
|
CC0000 |
CC0033 |
CC0066 |
CC0099 |
CC00CC |
CC00FF |
|
CC3300 |
CC3333 |
CC3366 |
CC3399 |
CC33CC |
CC33FF |
|
CC6600 |
CC6633 |
CC6666 |
CC6699 |
CC66CC |
CC66FF |
|
CC9900 |
CC9933 |
CC9966 |
CC9999 |
CC99CC |
CC99FF |
|
CCCC00 |
CCCC33 |
CCCC66 |
CCCC99 |
CCCCCC |
CCCCFF |
|
CCFF00 |
CCFF33 |
CCFF66 |
CCFF99 |
CCFFCC |
CCFFFF |
|
FF0000 |
FF0033 |
FF0066 |
FF0099 |
FF00CC |
FF00FF |
|
FF3300 |
FF3333 |
FF3366 |
FF3399 |
FF33CC |
FF33FF |
|
FF6600 |
FF6633 |
FF6666 |
FF6699 |
FF66CC |
FF66FF |
|
FF9900 |
FF9933 |
FF9966 |
FF9999 |
FF99CC |
FF99FF |
|
FFCC00 |
FFCC33 |
FFCC66 |
FFCC99 |
FFCCCC |
FFCCFF |
|
FFFF00 |
FFFF33 |
FFFF66 |
FFFF99 |
FFFFCC |
FFFFFF |
|