This is a discussion on Free shipping before tax within the New osCommerce Contributions forums, part of the osCommerce 2.2 Forums category; 1. Find in catalog/checkout_shipping.php around line 86 $free_shipping = false; if ( ($pass == true) && ($order->info['total'] >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER) ) ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| 1. Find in catalog/checkout_shipping.php around line 86 $free_shipping = false; if ( ($pass == true) && ($order->info['total'] >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER) ) { $free_shipping = true; and change to this: $free_shipping = false; if ( ($pass == true) && ($order->info['subtotal'] >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER) ) { $free_shipping = true; 2. Find in catalog/includes/modules/order_total/ot_shipping.php around line 41 if ( ($pass == true) && ( ($order->info['total'] - $order->info['shipping_cost']) >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER) ) { and change to this: if ( ($pass == true) && ( ($order->info['subtotal'] - $order->info['shipping_cost']) >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER) ) { 3. And finally if you want, find in catalog/includes/languages/english/modules/order_total/ot_shipping.php at line 17 define('FREE_SHIPPING_DESCRIPTION', 'Free shipping for orders over %s'); and change to this: define('FREE_SHIPPING_DESCRIPTION', 'Free shipping for orders over %s exc.VAT'); All credits goes to coolcl ... Regards from spain! More...
__________________ Michael Sasek osCMax Developer
|
| Sponsored Links | ||
| ||
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Free Shipping Mod. | mrocket | osCommerce 2.2 Modification Help | 0 | 10-25-2004 01:44 PM |
| free shipping over $99.00 | lil-raskals | osCommerce 2.2 Modification Help | 0 | 10-05-2004 08:49 AM |
| Free Shipping | GamerGoat | osCMax v1.7 General Mods Discussion | 8 | 04-14-2004 12:22 PM |
| osC MS2-MAX and Free Shipping Mod | Anonymous | osCMax v1.7 Discussion | 1 | 08-24-2003 01:27 AM |
| Free Shipping/flat rate shipping in zone | cvc505 | osCommerce 2.2 Installation Help | 2 | 07-21-2003 10:29 AM |