ShopPlus Instructions


Before setting us your cart, please email us so we can enable the program for you. You can send an Official Request for that purpose asking for the shopplus to be enabled.

The ShopPlus system is a sophisticated cgi program that will help you effectively sell your products and/or services via the internet. Since the products must be added to the cart, prices calulated automatically and your customer's purchases tracked by the program, all your html pages must be linked dynamicaly. This is commonly referenced as "carrying the cart". Dynamic referencing is done very easily with the ShopPlus, but it is an important concept to understand.

For example, to link pages to each other, you would normally use:
<A HREF="/path_from_root_of_web_site/pagename.html">

Using the ShopPlus, you would link as follow:
<A HREF="/scripts/shopplus.cgi?DN=domainname.com&CARTID=%cartid%&FILE=/path_from_root_of_web_site/pagename.html">

In the examples to follow these instructions, we will assume that your domain name is "abcd.com" and that all your web pages for your site's shopping area are in a directory called "Shopping".



Preliminary Shopping Area Pages
Create as many preliminary pages as you wish. This could be your shopping area's main entrance page, a page that shows all your product categories, a page that shows a listing of all products in a product category and so on. Just make sure you link each according to the standard ShopPlus dynamic referencing, as explained above.

For example, to link a page to another page called "product1.html" inside a directory called "Shopping", you would normally use:
<A HREF="/Shopping/product1.html">

Using the ShopPlus, you would link as follow:
<A HREF="/scripts/shopplus.cgi?DN=abcd.com&CARTID=%cartid%&FILE=/Shopping/product1.html">



Product(s)
Create as many products pages as you want. You can put one or multiple products on each products page. For each product, a set of values are attached in the form of hidden HTML tags. These values are price, product description, product id, shipping costs, etc...
  1. Since each product needs a quantity field for specifying the quantity ordered, a <FORM> tag must be included in the page, right after the <BODY> tag. The action of the <FORM> tag must specify the location of the review page.
    <FORM METHOD="post" ACTION="/scripts/shopplus.cgi?DN=abcd.com&CARTID=%cartid%">

  2. Next, put products on this page. Format your products on the page any way you want. You might want to add graphics, product name, model #, description, etc.. However, you also want to add FORM elements like text boxes, pull-down menus, radio buttons or checkboxes so that your customer can select the quantity and options of products they are purchasing. Before starting with any product, choose a unique id for that product. In our following examples, we have chosen "jeans" as our id.