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-14-2003 20:11:33

cybermed
Member
From: Burke Va - US
Registered: 09-06-2001
Posts: 54
Website

Globally Modify Shipping

Nick,  How can I globally modify ALL products from the default Shipping " Product Based Shipping" to "Custom Shipping?  Evan

Offline

 

#2 10-14-2003 20:17:40

EagleWolf
Member
From: Daytona Beach, FL
Registered: 07-27-2003
Posts: 979

Re: Globally Modify Shipping

Easiest way would be to download the product.csv file and modify the shipping type table. save and upload in binary to the data/tables folder.


If you are using mysql covert back to csv before downloading and making your change.


Chris
<a href='mailto:webmaster@equivity.com'>webmaster@equivity.com</a>
-

Offline

 

#3 10-15-2003 08:30:58

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

Re: Globally Modify Shipping

Even easier:  Under Database Utilities | SQL Statement Submission, execute an UPDATE command on the product table like this:

Code:


UPDATE product SET
product_delmethod='C',
product_customship='ste_shipcus_user'
WHERE product_delmethod='P'

The 'product_customship' portion of the statement sets the script to the user defined calc.  Use a different script there if you have a different one set up.  To do this update to all products regardless of whether they're set to product based right now, remove the WHERE portion of the statement.


Nick Hendler

Offline

 

#4 10-20-2003 11:28:08

cybermed
Member
From: Burke Va - US
Registered: 09-06-2001
Posts: 54
Website

Re: Globally Modify Shipping

I did the update above and some items updated the Shipping to Custom and others did not. Any suggestions?

GREAT SUPPORT NICK:)

Offline

 

#5 10-20-2003 11:59:17

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

Re: Globally Modify Shipping

Perhaps those items were not using the product based shipping method.  To do ALL products, use this SQL (has no WHERE statement in it):

Code:


UPDATE product SET
product_delmethod='C',
product_customship='ste_shipcus_user'


Nick Hendler

Offline

 

Board footer