Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Show Shipping methods even for Downloads


Guest

Recommended Posts

Posted

Hello,

 

how can i shop the shipping methods even for download options. Sounds stupid but i want that the customer can order the Downloads on a CD (as they are sometimes very huge).

 

Somebody have a clue? Use a modded osCommerce 2.2 MS2

Posted

Finally found the solution. Open up checkout_shipping.php and find in Line 52 (or around):

 

// if the order contains only virtual products, forward the customer to the billing page as

// a shipping address is not needed

if ($order->content_type == 'virtual') {

if (!tep_session_is_registered('shipping')) tep_session_register('shipping');

$shipping = false;

$sendto = false;

tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL'));

}

 

Replace with:

 

// if the order contains only virtual products, forward the customer to the billing page as

// a shipping address is not needed

/*

if ($order->content_type == 'virtual') {

if (!tep_session_is_registered('shipping')) tep_session_register('shipping');

$shipping = false;

$sendto = false;

tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL'));

}

*/

 

Thanks to me, myself & i :-)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...