|  Where is this feature? |  | 1.  | Log In |  | 2.  | Extra Features |  | 3.  | Custom Layout |  | 4.  | Errors/Warnings |  
  |  
 
  
 |   
WARNING: ##HTML.JavaScript## should be placed between <script> and </script> tags
  While not required.  Some of the more user friendly features of the shopping cart will not work if you do not have the ##HTML.JavaScript## feature installed in your custom.html file.
 
 A very basic HTML document looks something like this.  The piece in red needs to be added to your file.
 <html>
 <head>
 <title>Shopping Cart</title>
 #IF ##HTML.JavaScriptAllowed## && ##HTML.JavaScript##
 <script language="JavaScript" type="text/javascript">
 <!-- // Hide Script
 ##HTML.JavaScript##
 // End Script Hiding -->
 </script>
 #ENDIF
 </head>
 <body>
 ...
 </body>
 </html> |