Here is a list of the current variables available to you:
|
##Copyright## | The shopping cart copyright notice. This must appear somewhere in your custom.html file. If you do not add one, the shopping cart will automatically append it to the end of pages. |
##HTML.PageTitle## | The title of the current page.
|
##HTML.JavaScriptAllowed## | Some portions of the shopping cart (such as outbound email) may have problems if your header/footer includes any JavaScript. You can prevent these problems by encasing any JavaScript that you use inside of an if statement
#IF ##HTML.JavaScriptAllowed##
<script>
// your script here
</script>
#ENDIF
|
##HTML.JavaScript## | The cart occasionally uses minor JavaScript. Use this variable to include the scripts in your custom.html:
#IF ((##HTML.JavaScriptAllowed##)&&(##HTML.JavaScript##))
<script language="JavaScript" type="text/javascript">
<!-- Hide script
##HTML.JavaScript##
// End script hiding -->
</script>
#ENDIF
|
##HTML.OnLoad## | The cart occasionally needs to use the javascript "onLoad" event in the body tag. Use this variable to include the event:
<body
#IF ##HTML.OnLoad##
onLoad="##HTML.OnLoad##"
#ENDIF
>
|
|
##HTML.FontFace## | Text Font |
##HTML.BgColor## | Background Color
|
##HTML.TextColor## | Text Color
|
##HTML.LinkColor## | Link Color
|
##HTML.ALinkColor## | Active Link Color
|
##HTML.VLinkColor## | Visited Link Color
|
|
##HTML.TitleTextColor## | Title Text Color
|
##HTML.TableBackgroundColor1##
##HTML.TableBackgroundColor2##
##HTML.TableBackgroundColor3##
##HTML.TableBackgroundColor4## | Customer Info Divider
|
##HTML.TableTextColor1## | Table Text Color 1
|
##HTML.Background## | Background Image
|
|
##Company.Name## | Company Name
|
##Company.Logo## | Company Logo
|
##Company.Slogan## | Slogan
|
##Company.Phone## | Phone Number
|
|
##Bill.Name## | Customers name (if they have entered it).
|
##Bill.FirstName## | Customers first name.
|
##Bill.LastName## | Customers last name.
|
##SSLImage## | Display the SSL secured site logo
|