Products     Magento Extension     PCI-Shopping-Carts     Templates       CRELoaded     WordPress Modules     osCommerce Modules       osCommerce Addons       osCommerce Features       osCommerce Management       Payment Modules     CRELoaded Modules       CRE Loaded Addons       CRE Loaded Features       CRE Loaded Management       Payment Modules       CRELoaded Services
Free Stuff
Customization
Templates
Compare Products
You have no items to compare.
Affiliate Info
Affiliate Program FAQ
Affiliate Log In
Recent Orders
Hot Keywords: Order Notification, Order Search, Coupon, Flash Board, Compare, Floating Message, Tracking, Moneris, RSS, Visitor Filter

  Free Shipping w/ Minimum Amount

The following osCommerce contribution is a free Opensource code originated from official osCommerce website and provided for your reference only, you may download the original contribution file(s) and install it on your own; or you may request a Paid Installation Service from Agents Of Power; Agents Of Power does the "AS IS" installation on your website, we do not guarantee it will work properly on your website. Extra Paid service is available for repairing the problem from the original contribution or from your website.
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.
   Posted on: 10/08/2008     See contribution details Request Installation with Paid service