Contributions

Features (Category Index)
Search: 

Estimated Shipping Costs

As I haven't been able to find a contribution since I started with osC which could give an estimate shipping cost to the customer before checkout and I really wanted such thing, especially for my foreign customers, I developed this (infobox) module. Please bare with me as I am still very much learning osC and PHP every day I work with it !

What it does:

This contribution will add an infobox to your osCommerce shop which shows the estimated shipping costs to the customer. It will show as soon as the customer adds a product to his shopping cart and (re)calculate the estimated shipping costs. As it is based on the checkout shipping page the calculated shipping costs will be accurate and not really an estimate. At this stage only country based shipping costs information can be shown ! Alternatively you can show the estimated shipping cost module in your mainpage
instead as a left, or right, column infobox. The module will disable itself once the customer reaches the checkout shipping page.

Installation instructions and language files in Dutch and English are provided. I have added a picture to the package to show how it will look. A live example can be seen in my webshop.

Expand All / Collapse All

Non-Auth UPS Fix 3 Feb 2011

Noticed results were not returned unless you were logged into the cart.

simple change to catalog/includes/modules/estimated_shipping.asp:

find:
if (tep_session_is_registered('country')) {
if (isset($HTTP_POST_VARS['country'])) {
$country = $HTTP_POST_VARS['country'];


change to:

if (tep_session_is_registered('country')) {
if (isset($HTTP_POST_VARS['country'])) {
$country = $HTTP_POST_VARS['country'];
$estzipcode = $HTTP_POST_VARS['estzipcode'];

v1.7 without sending info to some analytics account 25 May 2007
Fix when using thickness depending shipping modules 9 Mar 2007
display shipping costs next to checkout button 14 Feb 2007
Fix for those using CSS based Template 27 Nov 2006
Register Globals Fix 2 Apr 2006
Admin Control for Popup Estimated Shipping 31 Mar 2006
Popup Estimated Shipping v1.7b with UPS/USPS support 10 Mar 2006
Popup Estimated Shipping v1.7a with UPS/USPS support 9 Mar 2006
bug fix: 10 Jan 2006
Estimated Shipping v1.5 4 Nov 2005
Estimated Shipping v1.7 with UPS/USPS support 4 Nov 2005
Estimated Shipping v1.6 with UPS/USPS support 6 Oct 2005
Estimated Shipping v1.5 with UPS/USPS support 18 Aug 2005
Estimated Shipping v1.4 with UPS/USPS support 3 Aug 2005
Estimated Shipping v1.4 3 Aug 2005
zipcode 2 Aug 2005
Estimated Shipping v1.3 30 Jul 2005
Estimated Shipping Costs Wheel of Time 1 Apr 2005

Note: Contributions are used at own risk.