|
Printable
Order Form
When the customer chooses to use the printable order
form option, they are routed to an order verification page so that
they can verify their billing/shipping information, as well as their
order before printing. If the information is correct, they can then
select the "Print Order" button and be forwarded to a
print ready page.
Print Verification
Below is the basic code for a print verification page:
<HTML>
<HEAD>
<!-- include the NebuCart Settings -->
<script language=javascript src="path/to/js_files/NC_settings.js">
<!-- include the NebuCart Engine -->
<script language=javascript src="path/to/js_files/NebuCart.js">
<!-- include the NebuCart Formatting Functions-->
<script language=javascript src="path/to/js_files/NC_formatting.js">
</HEAD>
<BODY>
<!-- Always include the NebuCart form tag in catalog pages! -->
<FORM NAME="NC_form">
Thanks! Please verify that the information below is correct before
proceeding to
final checkout. If you need to make some changes to your cart or
alter your
shipping/billing information, please do so now. If not, let's continue...
<!--
include the Customer Information script-->
<script language=javascript src="path/to/js_files/NC_buildcustomer.js">
<!--
include the Cart View script-->
<script language=javascript src="path/to/js_files/NC_viewcart.js">
If you continue, the resulting page will be a printable order form.
Just select File > Print from your browser's toolbar to print
out your form.
Once you've printed the order form, please include the full amount
of the
order via check or money order and send it to:
<!--
include the Merchant Information script-->
<script language=javascript src="path/to/js_files/NC_buildlogo.js">
Thanks!
<!--
include the Order Buttons script-->
<script language=javascript src="path/to/js_files/NC_finalbuttons.js">
</FORM>
<!-- always close your form tags -->
</BODY>
</HTML>
Printable Order Page
Below is the basic code for a print verification page:
<HTML>
<HEAD>
<!-- include the NebuCart Settings -->
<script language=javascript src="path/to/js_files/NC_settings.js">
<!-- include the NebuCart Engine -->
<script language=javascript src="path/to/js_files/NebuCart.js">
<!-- include the NebuCart Formatting Functions-->
<script language=javascript src="path/to/js_files/NC_formatting.js">
</HEAD>
<BODY>
<!--
include the Merchant Information script-->
<script language=javascript src="path/to/js_files/NC_buildlogo.js">
<!--
include the Customer Information script-->
<script language=javascript src="path/to/js_files/NC_buildcustomer.js">
<!--
include the Cart View script-->
<script language=javascript src="path/to/js_files/NC_viewcart.js">
</BODY>
</HTML>
For printable forms, you may want to keep the page as simple and
graphic free as possible. A clean order form makes for a happy customer!
If you would like to make the printable order page automatically
attempt to print, add this <body> tag to the document:
<body onLoad="javascript:window.print()">
Printable
Form
Insecure Form
Unsecure
Gateway
Back
Main
|