Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Apr 2010
    Posts
    265
    Plugin Contributions
    1

    Default How do I restrict Store Pickup to just Arizona?

    After updating to 1.5.3, I started using store pickup as a shipping option. I have the zone set for Arizona, and it is showing up on all shipping estimates, including international. I want it to only show up for Arizona. What did I do wrong?
    Thes are my settings:
    Customer In Store Pick-up

    Enable Store Pickup Shipping
    True

    Pickup Locations
    Walk In

    Shipping Cost
    0.00

    Tax Class
    --none--

    Tax Basis
    Shipping

    Shipping Zone
    Arizona

    Sort Order
    1


    redsautorehab.com

  2. #2
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: How do I restrict Store Pickup to just Arizona?

    You have named your Zone as "Arizona" by typing that name into its description.
    But what states did you link to that zone? (Click the Details button when looking at that zone, to see which country+state combinations you've associated with that zone).
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    Apr 2010
    Posts
    265
    Plugin Contributions
    1

    Default Re: How do I restrict Store Pickup to just Arizona?

    Quote Originally Posted by DrByte View Post
    You have named your Zone as "Arizona" by typing that name into its description.
    But what states did you link to that zone? (Click the Details button when looking at that zone, to see which country+state combinations you've associated with that zone).
    Under zone definitions for Arizona:
    Zone Definitions - Taxes, Payment and Shipping
    Country Zone
    United States Arizona

  4. #4
    Join Date
    Mar 2014
    Location
    Potomac, Maryland
    Posts
    1
    Plugin Contributions
    0

    Default Re: How do I restrict Store Pickup to just Arizona?

    Quote Originally Posted by vanhorn_s View Post
    Under zone definitions for Arizona:
    I have a similar problem. My IT 'people' have create a test 1.5.3 site for me and I have notice that I cannot restrict by zone the display of Store Pickup on the Shipping Screen as well as Cash On Delivery on the payment screen. I have those two options assigned to a zone called "Owner's Pricing" which is associated to only 1 customer (me)! However, in the test site, these options come up all the time regards of how I sign on. Is there something that I too am missing?

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

    Default Re: How do I restrict Store Pickup to just Arizona?

    Quote Originally Posted by BetsyRG View Post
    I have a similar problem. My IT 'people' have create a test 1.5.3 site for me and I have notice that I cannot restrict by zone the display of Store Pickup on the Shipping Screen as well as Cash On Delivery on the payment screen. I have those two options assigned to a zone called "Owner's Pricing" which is associated to only 1 customer (me)! However, in the test site, these options come up all the time regards of how I sign on. Is there something that I too am missing?
    This plugin may be a starting point: http://www.zen-cart.com/downloads.php?do=file&id=1702

    It is designed for postcode restriction but could be modified for zones.

  6. #6
    Join Date
    Jul 2011
    Posts
    146
    Plugin Contributions
    4

    Default Re: How do I restrict Store Pickup to just Arizona?

    Looks like I have the same problem too. Ever since upgrading to 1.5.3 I've been having problems that revolves around the store pickup module.
    Mind you, I've been using this module for a long time, pre 1.3.9 days. And Zones has been properly selected. So it's not a configuration issue.
    Here's what I've observed:

    * Store Pickup option will be a selectable option once the module is on. Regardless of zone definition, or the user's billing or shipping address.
    * Numinix's Optional/Required Shipping Insurance 3.2.2 applies insurance fees to orders that have selected Store Pickup. Where as it didn't do that before.

    I have two separate stores. They are both exhibiting the same problem after upgrading from 1.5.1 to 1.5.3

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

    Default Re: How do I restrict Store Pickup to just Arizona?

    In the file:
    /includes/modules/shipping/storepickup.php

    Around line 57 add the code in RED below it:
    Code:
        $this->enabled = ((MODULE_SHIPPING_STOREPICKUP_STATUS == 'True') ? true : false);
        $this->update_status();
    
    Last edited by Ajeh; 24 Sep 2014 at 12:09 AM. Reason: Fix missing path
    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!

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

    Default Re: How do I restrict Store Pickup to just Arizona?

    Quote Originally Posted by Ajeh View Post
    In the file:
    /includes/shipping/storepickup.php

    ......
    I think that should read /includes/modules/shipping/storepickup.php

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

    Default Re: How do I restrict Store Pickup to just Arizona?

    Thanks for the catch, frank18 ...
    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!

  10. #10
    Join Date
    Jul 2011
    Posts
    146
    Plugin Contributions
    4

    Default Re: How do I restrict Store Pickup to just Arizona?

    Well, that fixed the bug of zones not being restricted. . Now to on to the next thing. Mandatory insurance is now being applies.. that's another thread..
    Once again, Thank you, Ajeh

    Quote Originally Posted by Ajeh View Post
    In the file:
    /includes/modules/shipping/storepickup.php

    Around line 57 add the code in RED below it:
    Code:
        $this->enabled = ((MODULE_SHIPPING_STOREPICKUP_STATUS == 'True') ? true : false);
        $this->update_status();
    

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v153 Restrict Store Pickup to City or Zip Code Radius?
    By fabburl in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 28 Jun 2015, 11:52 PM
  2. how to change words on shipping on store pickup?
    By giuly in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 11 Aug 2012, 09:29 AM
  3. How can I use 2 different store pickup shipping method?
    By verybyte in forum General Questions
    Replies: 0
    Last Post: 9 Sep 2008, 07:08 AM
  4. How to restrict to just one product in the cart per customer?
    By gifro10 in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 28 Apr 2008, 07:49 AM
  5. how to know if shipping or store pickup ?
    By sospcshop in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 19 Aug 2006, 10:51 AM

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