This shipping module is modified from Freecount.zip which allowed you to offer free shipping w/ a minimum number of products in the shopping cart.
This edition of the script offers free shipping with a minimum order amount in dollars (or whatever your local currency).
cd /usr/htmldir/catalog/..
tar -xvzf freeamount.tar.gz
this will place a file in catalog/includes/modules/shipping/ and a file in catalog/includes/languages/english/modules/shipping/. Feel free to edit files to tailor to your situation.
Now load your administration pages and configure "Free Shipping w/ Minimum Amount". Send email if you have questions.
Legend: 
Download

Report
I am calling this v3.5e-C because it is based on the 3.5e version. I ignored v3.5f and the "Free Amount changes for Google Checkout Support" version because I didn't need any of that and wanted to keep complications out of my store. I also ignored v3.5e-b because I think the changes are unneccessary. And finally, I ignored v3.6f because I don't speak german and don't know what it does.
Basically this version that I am uploading is v3.5e PLUS I fixed the calculations where it takes into account whether to count products on special towards the minimum amount required to qualify for free shipping. Version 3.5e does account for products on special, but does not account for products on special purchased in multiple quantities. I simply rewrote that section. So if you want to use one of the other versions provided, you can simply change the following section.
In catalogincludesmodulesshippingfreeamount.php, find the section that checks whether MODULE_SHIPPING_FREEAMOUNT_HIDE_SPECIALS is true or not (around line 67), and replace that whole IF section with this
if (MODULE_SHIPPING_FREEAMOUNT_HIDE_SPECIALS == 'True') {
if ($cart->count_contents() > 0) {
$products = $cart->get_products();
for ($i=0, $n=sizeof($products); $i<$n; $i++) {
if ($special_price = tep_get_products_special_price($products[$i]['id'])) {
$cart_total -= ($special_price * $products[$i]['quantity']);
}
}
}
}
Hier die Deutsche /German Dateien.
Funktioniert einwandfrei..hab Sie aus 3.5e und einer älteren Version übersetzt..
Gwicht sowie Wunschpreis werden angezeigt und ausgegeben..zudem lässt sich ausblenden und nur bei erreichen des angegebenen Preis automatisch einblenden.
The attached instructions provide support for free shipping using Google Checkout version 1.4.5. The instructions also provide optional instructions for placing free shipping to the top of GC's shipping selection.
Only 3 files are changed with no added files.
I installed this module on one of my clients osc install and it get stuck at checkout_shipping.php
Here is the fix.
Only English language file is included. please use previous install for other language.
Full package.
I added tax class selection for compatibility with google checkout
Support forum:
http://forums.oscommerce.com/index.php?showtopic=88308
Found another bug and fixed it where shipping zones were not checked properly so people in the same country were getting free shipping regardless of zone.
As best I can tell here is the support forum:
http://forums.oscommerce.com/index.php?showtopic=88308
Fixed bug where total ship weight was not calculated properly causing the max ship weight function to work improperly.
This is a quick fix to make the "For orders of $xx.xx or more" on the shipping page update with the amount you put into the admin area.
In catalog/includes/languages/english/modules/shipping/freeamount.php:
Line 18 - change MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER to MODULE_SHIPPING_FREEAMOUNT_AMOUNT
*note, only that file is included*
Traduction en français du module avec la partie admin.
###
FULL
###
Just a very small update to display the minimum amount on the checkout pages in the active currency.
I have only updated the english strings file. So please do remember to update these strings if you are using a language other than english.
All files are included in this package including the original instructions from version 3.5c
just added norwegian translation
Updated English file for 3.5a. Cleans up functionality and wording.
Same as 3.5a but with updated Dutch language file.
Just edited the language file so it shows the actual variable contect for the amount max weight and measurment unit.
- Added bulgarian tranlation
- Since I don't speek Dutch some have to make the updated one.
- the feature to disable free shipping for products on special is now admin configurable
- added a short installation instruction for first time installation and update (english only)
Have fun, this is really a cool contrib for which all credits go to the original designer(s) !
This one is based on the 3.2 version which was the last one when I picked this contribution up.
It contains a weight fix which I had already done before seeing the updated 3.3 version for this plus I added a part which prevents free shipment for products on special.
So with this version there will be no free shipment if the set amount is reached by products on special. If the set amount is reached with normal priced products there will be free shipping regardless if there are products on special in between.
Do not use this version if you really want free shipment for products on special !!
Languages included are Dutch and English.
corrected the "maximum weight allowed" feature:
- max weight is now totaly ship weight and never box weight
- freeamonut will not displayed if the max weight is reached
Added a German Version
corrected the array problem so this version actually contains a functional catalog/includes/modules/shipping/freeamount.php file.
Just upload these two files to their appropriate locations, install the module from admin, and then configure.
Edit the language file to your liking. (english only)
This is a great contribution for which i take no credit.
This is the English version only.
-Translated French version.
-Cleaned up both files and tested.
-Fixed error with sort order not working correctly when using this contrib.
added features:
- maximum weight allowed
- able or disable display if the module is not allowed
Very small fixes:
Added the german files - and the ability to control the sort order (new snapshot feature).
adaptation for the last snapshoot (01-2003) and whith a admin panel to display the way or not if the amount is not reached
This shipping module is modified from Freecount.zip which allowed you to offer free shipping w/ a minimum number of products in the shopping cart.
This edition of the script offers free shipping with a minimum order amount in dollars (or whatever your local currency).
cd /usr/htmldir/catalog/..
tar -xvzf freeamount.tar.gz
this will place a file in catalog/includes/modules/shipping/ and a file in catalog/includes/languages/english/modules/shipping/. Feel free to edit files to tailor to your situation.
Now load your administration pages and configure "Free Shipping w/ Minimum Amount". Send email if you have questions.