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.
Nick, How can I globally modify ALL products from the default Shipping " Product Based Shipping" to "Custom Shipping? Evan
Offline
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.
Offline
Even easier: Under Database Utilities | SQL Statement Submission, execute an UPDATE command on the product table like this:
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.
Offline
I did the update above and some items updated the Shipping to Custom and others did not. Any suggestions?
GREAT SUPPORT NICK:)
Offline
Perhaps those items were not using the product based shipping method. To do ALL products, use this SQL (has no WHERE statement in it):
UPDATE product SET product_delmethod='C', product_customship='ste_shipcus_user'
Offline