Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 10-24-2017 11:18:18

Kettlepot Soap
Member
Registered: 07-28-2014
Posts: 56

Ship from zip code in V9?

Where do I update the ship from zip code?  I looked in the inventory and prod tables but didn't see it (it used to be in the product table).  I think the leading 0 has been dropped from the ship from zip.

Also, where do I set the default shipping value when the ship from zip code is incorrect?

Thanks!

Offline

 

#2 10-25-2017 08:36:40

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Ship from zip code in V9?

Look under Store / Inventory / Vendors.  Each vendor has a ship-from location.  Each Inventory Item has a reference to it's vendor.  Make sure both are right.


Nick Hendler

Offline

 

#3 10-25-2017 08:58:41

Kettlepot Soap
Member
Registered: 07-28-2014
Posts: 56

Re: Ship from zip code in V9?

Thanks!  There are three vendors on the list: default, KettlepotSoap-06339, and taxauthority.  All of the products in inventory were already linked to Kettlepot.  I added the zip code to the default and taxauthority info.  This didn't happen on previous orders, just this new one.  The minimum purchase value is 0 for Kettlepot - is this correct?

Also, if I wanted to have a shipping sale and set shipping to $X, where/how would I do that?

Offline

 

#4 10-26-2017 08:20:44

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Ship from zip code in V9?

You'll want to set up your vendors and tie them to inventory properly, especially if you order inventory from vendors, or have any of them dropship for you.  If you produce all your inventory yourself, you can likely set all inventory items to the default vendor and remove KettlepotSoap-06339.

Concerning free shipping, look under Store / Component / Settings / Shipping Settings.  You can configure that there.


Nick Hendler

Offline

 

#5 10-27-2017 09:55:16

Kettlepot Soap
Member
Registered: 07-28-2014
Posts: 56

Re: Ship from zip code in V9?

I'm not asking about free shipping :-) I'm asking about setting a particular price for shipping.  Say I wanted shipping for all orders to be $4 - where would I find that?

Offline

 

#6 10-30-2017 07:41:22

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Ship from zip code in V9?

Assign all inventory items (using Store / Inventory / Inventory Items) to use Custom Shipping as their delivery method, and select the User Defined script as the Custom Shipping Script.  Then edit the User Defined custom shipping script (using Store / Shipping / Custom Shipping) to do a flat $4 charge.


Nick Hendler

Offline

 

#7 02-09-2018 18:11:49

Kettlepot Soap
Member
Registered: 07-28-2014
Posts: 56

Re: Ship from zip code in V9?

Thanks!

Offline

 

#8 02-12-2018 11:39:58

Kettlepot Soap
Member
Registered: 07-28-2014
Posts: 56

Re: Ship from zip code in V9?

So I don't mess anything up . . . again . . . . under Custom Shipping Methods do I

1) clone User Defined Calculation
2) rename it $4 shipping
3) edit the part of the code below and change the 10 to 4

$info = $this->globals('ecom.customship');

$custom = array('Standard Carrier' => '10.00');

$this->globals('ecom.customship_response',$custom);

?>

4) submit
5) link all the inventory to this shipping method

Anything else?

Thanks!

Offline

 

#9 02-13-2018 08:53:59

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Ship from zip code in V9?

Correct, that's absolutely correct.  The only thing I might add is you might want to remove all customer shopping carts right after updating your inventory to ensure all future orders use this method (and not something cached from before).  To do that, run this SQL Statement in Raw DB Admin:

Code:

DELETE FROM ecom_carts

Nick Hendler

Offline

 

Board footer