How do I consolidate the checkout screens so that the "shipping and billing selection" lists are on the "Customer Information" page?
(2004/07/22)The modification is relatively simple. In the "Main template" area of the template that you're using for the customer information page (the "Checkout: Customer Information" is the default template intended to be assigned to the OINF screen) replace the token:
%beginform|OINF|%
with
%beginform|OINFtoOPAY|%
This will cause the form to skip the payment/shipping selection screen. And somewhere between the %beginform|OINFtoOPAY|% and %endform% tokens add the table (in my test store I placed it right underneath the %beginform|OINFtoOPAY|% token so that it appears above the address information):
<table border="0" cellpadding="2" cellspacing="0">
<tr>
<td align="left" valign="top" nowrap>
<font face="%bdyfontface%" size="%bdyfontsize%">
<b>Ship Via:</b>
</font>
</td>
<td align="left" valign="top">
<font face="%bdyfontface%" size="%bdyfontsize%">
%shippinglist|<Select One>|%
%begin_noshipping%
<br />
<b>
No valid shipping methods are available for your order. You will be
contacted regarding shipping when your order is processed.
</b>
%end_noshipping%
</font>
</td>
<td align="right" valign="top" width="100%">
%shippingicons%
</td>
</tr>
<tr>
<td align="left" nowrap>
<font face="%bdyfontface%" size="%bdyfontsize%">
<b>Pay With:</b>
</font>
</td>
<td align="left">
<font face="%bdyfontface%" size="%bdyfontsize%">
%paymentlist|<Select One>|%
</font>
</font>
</td>
<td align="right" width="100%">
</td>
</tr>
</table>
This table includes the tokens used to display the shipping and payment selection lists.
Last update: 2004-12-10 09:36
Author: Support
Revision: 1.0
You cannot comment on this entry
Most Recent FAQ Entries: 
- Alternate ways to display the product and attribute data ... (2008-09-02 18:40)
- Adding both "Add All to Basket" and "Add to ... (2008-09-01 09:46)
- When adding a product to the basket from an ... (2008-08-27 19:02)
- I have the module configured to add the key ... (2008-08-13 14:50)
- What is the format for the htaccess file if ... (2008-08-12 14:50)
Top 10 
- 2921 views:
Adding Tokens to Evaluate Expressions - 2852 views:
Is there a way to "Limit" the number of ... - 2775 views:
Why won't you call me for technical support? I ... - 2665 views:
Are license keys valid for more than one store? ... - 2566 views:
I'm trying to enter a license key and get ... - 2555 views:
How do I install a module? - 2397 views:
How do I check for a module upgrade? - 2363 views:
How can display and change the parameters of an ... - 2210 views:
The total on my checkout pages are not correct. ... - 2011 views:
I have select and radio type attributes in my ...
















