Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2011
    Posts
    1
    Plugin Contributions
    0

    Default Free Shipping according to UK post code

    Hi there!
    I've very new to Zen Cart, and am currently struggling with what I hoped was a simple thing. I would like to offer free post and packaging within in my post code in the UK (Pre-fix LS29). Can anyone suggest a simple way of doing this?

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Free Shipping according to UK post code

    You could customize the Free Shipping Options freeoptions by setting the Total >= 0 ...

    Then customize the code for:
    /includes/modules/shipping/freeoptions.php

    by adding the code in RED to it:
    Code:
          // disable only when entire cart is free shipping
          if (zen_get_shipping_enabled($this->code)) {
              $this->enabled = ((MODULE_SHIPPING_FREEOPTIONS_STATUS == 'True') ? true : false);
          }
    
    // bof: free shipping for 1 zipcode
    if (!IS_ADMIN_FLAG) {
            $this->enabled = false;
            $free_ship_postcodes = array('LS29');
            $customer_postcode = $order->delivery['postcode'];
            $check4digitcode = substr($customer_postcode, 0, 4);
            $valid_digits = in_array($check4digitcode, $free_ship_postcodes);
            if ($valid_digits) $this->enabled = true;
    }
    // eof: free shipping for 1 zipcode
    
          if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_FREEOPTIONS_ZONE > 0) ) {
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 

Similar Threads

  1. v151 Shipping Rate by Post Code
    By ruks12 in forum Addon Shipping Modules
    Replies: 2
    Last Post: 8 Jun 2015, 11:30 AM
  2. v151 Free shipping for Australia and rest of the World charge Shipping w/AU post
    By oavs in forum Built-in Shipping and Payment Modules
    Replies: 8
    Last Post: 27 Jan 2014, 02:38 PM
  3. UK post code shipping zones or product specific flate rate shipping
    By evil turinp in forum Addon Shipping Modules
    Replies: 0
    Last Post: 4 Nov 2010, 07:29 PM
  4. Different free shipping levels by post code?
    By robsnowden in forum General Questions
    Replies: 1
    Last Post: 23 Oct 2008, 04:32 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR