Zen Cart Logo
Forums / Addon Shipping Modules / ZipShip - Support Thread

ZipShip - Support Thread

Views: 53,121

Results 21 to 40 of 109
20 Nov 2017, 12:53 AM
#21
rixstix avatar

rixstix

Totally Zenned

Join Date:
Aug 2009
Location:
North Idaho, USA
Posts:
2,015
Plugin Contributions:
0

ZipShip - Support Thread

Does setting the sort order greater than zero help?

20 Nov 2017, 9:38 PM
#22
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,089
Plugin Contributions:
56

Re: ZipShip - Support Thread

lat9:

I get a 404 (page not found) when I attempt to view that link.

What is the address that you're using when you checkout? Is it in that 94939 zipcode?

How much does the package weigh? With that setup, up to 10 lbs will be 9.99. Over that, the shipping method is disabled.
What is your expectation of cost-by-pounds? As I'd noted before, your current setup will auto-disable itself for any order over 10 (I think, the print's kind of small) pounds.

23 Nov 2017, 10:32 PM
#23
nicksab avatar

nicksab

Totally Zenned

Join Date:
Apr 2011
Posts:
592
Plugin Contributions:
0

Re: ZipShip - Support Thread

lat9:

What is your expectation of cost-by-pounds? As I'd noted before, your current setup will auto-disable itself for any order over 10 (I think, the print's kind of small) pounds.

I am using as per items basis. The weight of my product are set to 0. I am not using as per weight basis.

I tried to change the weight of the product to 5 but it doesn t work either.

I tried to set sort order to 1 instead of 0 but that didn't work either.

23 Nov 2017, 11:00 PM
#24
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,089
Plugin Contributions:
56

Re: ZipShip - Support Thread

nicksab:

I am using as per items basis. The weight of my product are set to 0. I am not using as per weight basis.

I tried to change the weight of the product to 5 but it doesn t work either.

I tried to set sort order to 1 instead of 0 but that didn't work either.
Same comment, different configuration. You've got (from your previous posting) only one item configured, so if the customer orders more than 10 items, the shipping method won't enable itself.

17 Jan 2018, 1:41 AM
#25
tmccaff avatar

tmccaff

Zen Follower

Join Date:
Jan 2018
Posts:
157
Plugin Contributions:
0

Re: ZipShip - Support Thread

Could you use MySQL to pull zipcodes instead? Not sure how to do this something like this:

$zipcode_prefix = substr($order->delivery['postcode'],0,3);
		global $db;
		$check = $db->Execute("select zipcodezone from " . TABLE_ZIPCODEZONE . " where '" . $zipcode_prefix . "' BETWEEN zipcode_start and zipcode_end");
        while (!$check->EOF) {
			$dest_zone = $check->fields['zipcodezone'];
		  $check->MoveNext();
          }

//		echo $dest_zone;

than in MySQL do this:

CREATE TABLE zipcodezone (
zipcode_id INT( 11 ) NOT NULL AUTO_INCREMENT PRIMARY KEY,
zipcode_start char(3) NOT NULL default '0',
zipcode_end char(3) NOT NULL default '0',
zipcodezone int(1) NOT NULL default '0');

INSERT INTO zipcodezone
(zipcode_id ,zipcode_start ,zipcode_end ,zipcodezone)
VALUES (1, '004', '005', 8),
(2, '010', '089', 8), etc

Not sure how to implement this though. Thanks

18 Jan 2018, 9:33 PM
#26
tmccaff avatar

tmccaff

Zen Follower

Join Date:
Jan 2018
Posts:
157
Plugin Contributions:
0

Re: ZipShip - Support Thread

I am trying to do following; look up zipcode using 3 digit prefix of zip code and use zones; I am trying to figure out now how to enable this to only a certain shipping zone.

basically use MYSQL to look up 3 digit code like this

(1, '010', '089', 8) so zipcodes starting with 010 to 089 will be zone 8. Now only applied to Continental USA.
Then in zone definition add US states to this and use Shipping Zone enabled for this zone. As of now since the shipping_zone is for whole usa

Then I will add another module for AK, PR, etc Non Continental states.

So basically one says this:

Alaska 99922 United States 
Available Shipping Methods
Rates
Ground delivery (The shipping rate cannot be determined at this time)
$0.00
Rush Delivery (Shipping to 99922 (1 x 3.00lb(s)))

That is why I am trying to enable Shipping_zone.. to eliminate "Ground delivery (The shipping rate cannot be determined at this time)"

I got it working except for Shipping_zone it don't seem to work. Make sense?

18 Jan 2018, 9:40 PM
#27
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,089
Plugin Contributions:
56

Re: ZipShip - Support Thread

@tmccaff, Would you please take this discussion somewhere besides the ZipShip shipping-module's support thread ... since it's not having to do with this module?

18 Jan 2018, 11:29 PM
#28
tmccaff avatar

tmccaff

Zen Follower

Join Date:
Jan 2018
Posts:
157
Plugin Contributions:
0

Re: ZipShip - Support Thread

I am asking why the ZipCode shipping_zone not working In 1.5.5; is there an updated code for this to work?

19 Jan 2018, 1:22 PM
#29
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,089
Plugin Contributions:
56

Re: ZipShip - Support Thread

tmccaff:

I am asking why the ZipCode shipping_zone not working In 1.5.5; is there an updated code for this to work?
Right, you're asking about Seven-Zone Zipcode-based shipping module, **not **ZipShip. Please continue that discussion elsewhere.

19 Jan 2018, 6:27 PM
#30
tmccaff avatar

tmccaff

Zen Follower

Join Date:
Jan 2018
Posts:
157
Plugin Contributions:
0

Re: ZipShip - Support Thread

I tried both plugins and either does Shipping Zone which is what I need. This module has it but don't work. Geez

3 Feb 2018, 8:40 PM
#31
ezorb avatar

ezorb

Zen Follower

Join Date:
Apr 2006
Location:
Midland TX
Posts:
426
Plugin Contributions:
0

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

3 Feb 2018, 11:56 PM
#32
ezorb avatar

ezorb

Zen Follower

Join Date:
Apr 2006
Location:
Midland TX
Posts:
426
Plugin Contributions:
0

Re: ZipShip - Support Thread

EZorb:

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?

6 Feb 2018, 12:35 PM
#33
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,089
Plugin Contributions:
56

Re: ZipShip - Support Thread

EZorb:

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.

19 Nov 2019, 1:31 PM
#34
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,089
Plugin Contributions:
56

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'.

20 Nov 2019, 2:15 PM
#35
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,089
Plugin Contributions:
56

Re: ZipShip - Support Thread

lat9:

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.

15 Dec 2019, 2:48 PM
#36
royaldave avatar

royaldave

Zen Follower

Join Date:
Aug 2013
Location:
Perth, WA, AU
Posts:
284
Plugin Contributions:
1

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)

15 Dec 2019, 3:24 PM
#37
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,089
Plugin Contributions:
56

Re: ZipShip - Support Thread

Thanks for the report, @royaldave. You can correct that processing by editing /includes/modules/shipping/zipship.php, finding:

    protected function getQuote($dest_zone)
    {

and adding the highlighted line:

    protected function getQuote($dest_zone)
    {
        [B]global $shipping_weight, $shipping_num_boxes, $item_count;[/B]

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.

16 Dec 2019, 8:28 AM
#38
royaldave avatar

royaldave

Zen Follower

Join Date:
Aug 2013
Location:
Perth, WA, AU
Posts:
284
Plugin Contributions:
1

Re: ZipShip - Support Thread

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 !

16 Dec 2019, 11:55 AM
#39
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,089
Plugin Contributions:
56

Re: ZipShip - Support Thread

royaldave:

Thanks, that seems to have fixed it !
I appreciate the confirmation!

22 Dec 2019, 6:38 PM
#40
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,089
Plugin Contributions:
56

Re: ZipShip - Support Thread

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