Page 7 of 12 FirstFirst ... 56789 ... LastLast
Results 61 to 70 of 118
  1. #61
    Join Date
    Nov 2009
    Posts
    7
    Plugin Contributions
    0

    Default Re: Product Delivery by Postcode (PDP) - [Support]

    Hi Guys,

    Can anybody here please help? I’ve installed PDP and it functions fine for local addresses buying local delivery only. But, when someone from a postcode outside the local delivery zone buys anything they are offered local delivery as well. And if they buy a product that is restricted to local delivery they are still offered that product with the local delivery option showing.

    I have re-installed PDP but nothing changed.

    Help greatly appreciated.

    Brad.

  2. #62
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Product Delivery by Postcode (PDP) - [Support]

    Quote Originally Posted by madbrad View Post
    Hi Guys,

    Can anybody here please help? I’ve installed PDP and it functions fine for local addresses buying local delivery only. But, when someone from a postcode outside the local delivery zone buys anything they are offered local delivery as well. And if they buy a product that is restricted to local delivery they are still offered that product with the local delivery option showing.

    I have re-installed PDP but nothing changed.

    Help greatly appreciated.

    Brad.
    What is your ZC version?

    Also double-check that you have properly merged all relevant core and/or template files.

  3. #63
    Join Date
    Nov 2009
    Posts
    7
    Plugin Contributions
    0

    Default Re: Product Delivery by Postcode (PDP) - [Support]

    Hi Frank,

    Version - 1.5.1. I've gone over installation a number of times but no luck. Could it be clashing with the Auspost module I've got installed?
    This is the format I've got for the Postcodes Allowed - 2484,2485,2486,2487,2488,2489,2490,4209,4210,4211,4212,4213,4214,4215,4216,4217, 4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230
    Yet, if I use a WA address or NT address it still gives the option for local delivery.

    If you've got any ideas please let me know?

    Thanks,
    Brad.

  4. #64
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Product Delivery by Postcode (PDP) - [Support]

    Quote Originally Posted by madbrad View Post
    Hi Frank,

    Version - 1.5.1. I've gone over installation a number of times but no luck. Could it be clashing with the Auspost module I've got installed?
    This is the format I've got for the Postcodes Allowed - 2484,2485,2486,2487,2488,2489,2490,4209,4210,4211,4212,4213,4214,4215,4216,4217, 4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230
    Yet, if I use a WA address or NT address it still gives the option for local delivery.

    If you've got any ideas please let me know?

    Thanks,
    Brad.
    Hi Brad,

    ZC version is OK - as for Auspost: I have no idea if there is a clash, I would need to look at your file system.

    PM me if you want me to do that.

    Cheers / Frank

  5. #65
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Product Delivery by Postcode (PDP) - [Support]

    Quote Originally Posted by frank18 View Post
    Hi Brad,

    ZC version is OK - as for Auspost: I have no idea if there is a clash, I would need to look at your file system.

    PM me if you want me to do that.

    Cheers / Frank
    Hi Brad,

    all fixed, you may have used the old PDP version 1.0 which was buggy.

    Pls check your office email for full details.

    Cheers / Frank

  6. #66
    Join Date
    Nov 2009
    Posts
    7
    Plugin Contributions
    0

    Default Re: Product Delivery by Postcode (PDP) - [Support]

    Thank you so much for your help Frank. I really appreciate it.

    PDP is the perfect little add-on for us.

    Thanks again,
    Brad.

  7. #67
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Product Delivery by Postcode (PDP) - [Support]

    Quote Originally Posted by madbrad View Post
    Thank you so much for your help Frank. I really appreciate it.

    PDP is the perfect little add-on for us.

    Thanks again,
    Brad.
    My pleasure..

    Cheers / Frank

  8. #68
    Join Date
    Jun 2007
    Location
    Australia
    Posts
    60
    Plugin Contributions
    0

    Default Re: Product Delivery by Postcode (PDP) - [Support]

    hi,
    I think this module is what I am after but I am not sure if I'm missing something. Using ZC 1.5.3 and have 3 categories large Trees(1), landscape supplies(2) and florist (3) that require local delivery only in NZ. Each postcode has a different shipping cost which is the same for trees and landscape categories, but is different for florist. Can this mod also set delivery fees based on postcode or is there another way?
    Any guidance appreciated.

  9. #69
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Product Delivery by Postcode (PDP) - [Support]

    Quote Originally Posted by sydmich View Post
    hi,
    I think this module is what I am after but I am not sure if I'm missing something. Using ZC 1.5.3 and have 3 categories large Trees(1), landscape supplies(2) and florist (3) that require local delivery only in NZ. Each postcode has a different shipping cost which is the same for trees and landscape categories, but is different for florist. Can this mod also set delivery fees based on postcode or is there another way?
    Any guidance appreciated.
    PDP is not designed to cater for your specific requirements, it would need some more modifications to do what you have in mind...

  10. #70
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Product Delivery by Postcode (PDP) - [Support]

    I have been made aware that there could be a clash between PDP and the UK Royal Mail shipping module on some sites.

    If this affects your (UK) site you need to modify includes/functions/functions_general.php

    In that file find this code

    PHP Code:
    // if product is local delivery only - disable all other modules
    case ($check_cart_local and $shipping_module != 'localdelivery' || $shipping_module != 'storepickup'):
    return 
    false;
    break; 
    then right after that you need to add

    PHP Code:
    // if product is local delivery only - disable Royal Mail first
    case ($check_cart_local and $shipping_module == 'rmfirst'):
    return 
    false;
    break;
    // if product is local delivery only - disable Royal Mail second
    case ($check_cart_local and $shipping_module == 'rmsecond'):
    return 
    false;
    break; 
    This fix appears to eleviate the conflict.

    Cheers / Frank

 

 
Page 7 of 12 FirstFirst ... 56789 ... LastLast

Similar Threads

  1. Order Delivery Date Support Thread
    By mrmeech in forum Managing Customers and Orders
    Replies: 543
    Last Post: 23 Jul 2025, 02:20 AM
  2. v151 Store Pickup by Delivery Postcode
    By frank18 in forum Addon Shipping Modules
    Replies: 5
    Last Post: 24 Jun 2013, 10:27 AM
  3. v150 Delivery Charge by Australian Postcode
    By melbflor in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 7 Apr 2012, 07:43 AM
  4. Delivery postcode
    By evil turinp in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 8 Nov 2010, 08:26 PM
  5. Wanted - Local Delivery by Postcode
    By Ryk in forum Addon Shipping Modules
    Replies: 18
    Last Post: 19 May 2010, 01:59 PM

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