Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / Skip Shipping and Payment Pages?

Skip Shipping and Payment Pages?

Locked

Views: 1,580

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
26 Dec 2009, 2:57 PM
#1
alliet3 avatar

alliet3

New Zenner

Join Date:
Nov 2009
Posts:
8
Plugin Contributions:
0

Skip Shipping and Payment Pages?

I'm going for a quick and efficient checkout process. Because I'm offering only one payment method (PayPal) and one shipping method (USPS), I'd like to skip the delivery information page (step 1) and payment information (step 2), so customers go directly from shopping cart to order confirmation page (step 3), then to the PayPal checkout page. I've read many, many previous threads, but have not found one that solved this challenge. Can you help?

26 Dec 2009, 3:36 PM
#2
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,180
Plugin Contributions:
0

Re: Skip Shipping and Payment Pages?

Al,
There is a one step checkout module in the Free Software Add Ons you might be interested in.

26 Dec 2009, 6:18 PM
#3
alliet3 avatar

alliet3

New Zenner

Join Date:
Nov 2009
Posts:
8
Plugin Contributions:
0

Re: Skip Shipping and Payment Pages?

Hmmm... an interesting idea. Thank you! Could you please post a few urls I could visit to see examples in action? or suggest another way I could see what the one-page checkout looks like before I try it?

26 Dec 2009, 11:21 PM
#4
alliet3 avatar

alliet3

New Zenner

Join Date:
Nov 2009
Posts:
8
Plugin Contributions:
0

Re: Skip Shipping and Payment Pages?

Can anyone tell me how and where to change coding to skip both shipping and payment pages?

27 Dec 2009, 3:12 PM
#5
alliet3 avatar

alliet3

New Zenner

Join Date:
Nov 2009
Posts:
8
Plugin Contributions:
0

Re: Skip Shipping and Payment Pages?

While waiting for an expert suggestion, I tried this and it seems to do what I want it to. Can anyone see any drawbacks? I'd appreciate your take and any other suggestions. Thanks!

includes/templates/custom/templates/tpl_shopping_cart_default.php

line 132

changed original:

<div class="buttonRow forward"><?php echo '<a href=" ' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHECKOUT, BUTTON_CHECKOUT_ALT) . '</a>'; ?></div>

to:

<div class="buttonRow forward"><?php echo '<a href="index.php?main_page=checkout_confirmation"' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHECKOUT, BUTTON_CHECKOUT_ALT) . '</a>'; ?></div>
28 Dec 2009, 2:39 AM
#6
alliet3 avatar

alliet3

New Zenner

Join Date:
Nov 2009
Posts:
8
Plugin Contributions:
0

Re: Skip Shipping and Payment Pages?

Must be something not-quite-right in my code... works inconsistently. Please help. Thanks!