Page 4 of 10 FirstFirst ... 23456 ... LastLast
Results 31 to 40 of 93
  1. #31
    Join Date
    Apr 2006
    Location
    Midland TX
    Posts
    428
    Plugin Contributions
    0

    Default Re: ZipShip - Support Thread

    I am using zipship (zone 1) for Store Pickup by inserting zipcode that are allowed to use Store Pickup.

    I also set zone 2 to 00000 for all 5 digits zip codes (I believe that is what I read) and that does not work. I also noticed that if I change Shipping Zone from none to the zone code choice the zipship module does not work at all. Change it back and Store Pickup works.

    When I using Flat Rate module it will work if Shipping Zone is set to none. If you change it to the choice available it will not work.

    This indicates to me that Locations/Taxes is not set up correctly. It is still set as it was before upgrading to 1.5.5e

  2. #32
    Join Date
    Apr 2006
    Location
    Midland TX
    Posts
    428
    Plugin Contributions
    0

    Default Re: ZipShip - Support Thread

    Quote Originally Posted by EZorb View Post
    I am using zipship (zone 1) for Store Pickup by inserting zipcode that are allowed to use Store Pickup.

    I also set zone 2 to 00000 for all 5 digits zip codes (I believe that is what I read) and that does not work. I also noticed that if I change Shipping Zone from none to the zone code choice the zipship module does not work at all. Change it back and Store Pickup works.

    When I using Flat Rate module it will work if Shipping Zone is set to none. If you change it to the choice available it will not work.

    This indicates to me that Locations/Taxes is not set up correctly. It is still set as it was before upgrading to 1.5.5e
    Found that for the shipping zone problem reason not working correctly is you must have details setup for any state you want to limit/allow.

    Still have problem with zipship when wanting all 5 digits zipcodes entering 00000. That still does not work or was that feature removed in an update?

    Instead of entering a real zipcode I entered 00000 and no results. Next, I entered a comma after the 5 "0" like 00000,02101. I got expected results on 02101 when testing, nothing on any other 5 digit zipcodes.

    How does zipship know 00000 means every USA state and territory?
    Would this not have to setup somehow in Admin>Locations.....?
    admin>modules>zipship>edit For example it shows:
    "Zone 2 Zip Codes
    Comma separated list of five character zip codes that are part of Zone 2.
    Set as 00000 to indicate all five character zip codes that are not specifically defined."


    Then what is the 00000 used for and is it used?

  3. #33
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,403
    Plugin Contributions
    87

    Default Re: ZipShip - Support Thread

    Quote Originally Posted by EZorb View Post
    admin>modules>zipship>edit For example it shows: Zone 2 Zip Codes
    Comma separated list of five character zip codes that are part of Zone 2.
    Set as 00000 to indicate all five character zip codes that are not specifically defined.

    Then what is the 00000 used for and is it used?
    Ah, that "commentary" was present in the original plugin so I don't know what the original author intended. Based on the code, I'm guessing that he had a list of zipcodes that were being used and it was easy to "remove" an unwanted code by setting the value to 0.

    There is nothing in the code (other than that configuration comment) that special-cases the 00000 case.

  4. #34
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,403
    Plugin Contributions
    87

    Default Re: ZipShip - Support Thread

    I've just submitted ZipShip v3.0.0 to the Zen Cart moderators for review. Once approved, it can be downloaded here: https://www.zen-cart.com/downloads.php?do=file&id=312.

    This release contains changes associated with the following GitHub issues and has been validated on Zen Cart 1.5.4 through 1.5.6c:

    #7: Enable different title/description for each ZipShip 'zone' defined.
    #8: Restructuring to prevent various PHP notices and warnings from being generated. Remove unused "Tax Basis" setting.
    #9: A zipcode that matched a zipcode list, but failed to match the associated criteria could provide free shipping for the order.
    #10: "Resurrect" the default 00000 zipcode 'catch-all'.

  5. #35
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,403
    Plugin Contributions
    87

    Default Re: ZipShip - Support Thread

    Quote Originally Posted by lat9 View Post
    I've just submitted ZipShip v3.0.0 to the Zen Cart moderators for review. Once approved, it can be downloaded here: https://www.zen-cart.com/downloads.php?do=file&id=312.

    This release contains changes associated with the following GitHub issues and has been validated on Zen Cart 1.5.4 through 1.5.6c:

    #7: Enable different title/description for each ZipShip 'zone' defined.
    #8: Restructuring to prevent various PHP notices and warnings from being generated. Remove unused "Tax Basis" setting.
    #9: A zipcode that matched a zipcode list, but failed to match the associated criteria could provide free shipping for the order.
    #10: "Resurrect" the default 00000 zipcode 'catch-all'.
    Now available for download.

  6. #36
    Join Date
    Aug 2013
    Location
    Perth, WA, AU
    Posts
    167
    Plugin Contributions
    1

    Default Re: ZipShip - Support Thread

    Is there any upgrade instructions?
    On installing this it didn't work - not getting any rates on checkout.
    Put original files back and it works again

    I'm upgrading to 1.5.6c - so that's whats installed on test server.

    zipship config -

    Enable Zip Code Method
    True

    Calculation Method
    Weight

    Tax Class
    --none--

    Tax Basis
    Shipping

    Shipping Zone
    --none--

    Sort Order
    0

    Zone 1 Zip Codes
    6004,6005,6100,6101,6102,6152,6153,6151,6152A

    Zone 1 Shipping Table
    14:15,70:20,130:25,999:50

    Zone 1 Handling Fee
    0

    ....

    (70 zones)

  7. #37
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,403
    Plugin Contributions
    87

    Default Re: ZipShip - Support Thread

    Thanks for the report, @royaldave. You can correct that processing by editing /includes/modules/shipping/zipship.php, finding:
    Code:
        protected function getQuote($dest_zone)
        {
    and adding the highlighted line:
    Code:
        protected function getQuote($dest_zone)
        {
            global $shipping_weight, $shipping_num_boxes, $item_count;
    I'll get this issue and the associated correction noted on the plugin's GitHub repository for a follow-on update. Note that this update affects configurations that were/are using the "Weight" calculation method.

    I'll be submitting v3.0.1 of ZipShip to the plugin moderators for review shortly and will report back here when it's available for download.

  8. #38
    Join Date
    Aug 2013
    Location
    Perth, WA, AU
    Posts
    167
    Plugin Contributions
    1

    Default Re: ZipShip - Support Thread

    Quote Originally Posted by lat9
    I'll be submitting v3.0.1 of ZipShip to the plugin moderators for review shortly and will report back here when it's available for download.

    Thanks, that seems to have fixed it !

  9. #39
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,403
    Plugin Contributions
    87

    Default Re: ZipShip - Support Thread

    Quote Originally Posted by royaldave View Post
    Thanks, that seems to have fixed it !
    I appreciate the confirmation!

  10. #40
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,403
    Plugin Contributions
    87

    Default Re: ZipShip - Support Thread

    Quote Originally Posted by lat9
    I'll be submitting v3.0.1 of ZipShip to the plugin moderators for review shortly and will report back here when it's available for download.
    Available for download: https://www.zen-cart.com/downloads.php?do=file&id=312

 

 
Page 4 of 10 FirstFirst ... 23456 ... LastLast

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 AM
  2. SysCheck [support thread]
    By swguy in forum All Other Contributions/Addons
    Replies: 36
    Last Post: 24 Oct 2020, 05:28 AM
  3. v151 Ship2Pay Support thread
    By Design75 in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 5 Nov 2019, 01:14 PM
  4. goMobile Support Thread
    By steveyork136 in forum Addon Templates
    Replies: 29
    Last Post: 26 Aug 2015, 11:56 AM
  5. ZJ Silver Support Thread
    By anthonyd in forum Addon Templates
    Replies: 220
    Last Post: 5 Nov 2010, 03:30 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