|  Where is this feature? |  | 1.  | Log In |  | 2.  | Extra Features |  | 3.  | Custom Layout |  | 4.  | Errors/Warnings |  
  |  
 
  
 |   
WARNING: ##HTML.OnLoad## should be placed in the body tag as shown <body onload="##HTML.OnLoad##">
  While not required.  Some of the more user friendly features of the shopping cart will not work if you do not have the ##HTML.OnLoad## 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>
 </head>
 <body
 #IF ##HTML.JavaScriptAllowed##
 #IF ##HTML.OnLoad##
 onload="##HTML.OnLoad##"
 #ENDIF
 #ENDIF
 >
 ...
 </body>
 </html> |