Guest Posted November 8, 2005 Posted November 8, 2005 Hello I recently removed the Multi Vendor Shipping mod from my shop, now when I try to edit a product in admin, this message shows: 1146 - Table 'elementally_net_-_catalog.TABLE_SHIPPING_METHODS' doesn't exist select method_name from TABLE_SHIPPING_METHODS [TEP STOP] Can anyone please help? Thanks Quote
Maggilove Posted November 8, 2005 Posted November 8, 2005 Did you take out the multi-ship code from admin/categories.php? //mltship $ship_method_array = array(array('id' => TEXT_NONE, 'text' => TEXT_NONE)); $ship_method_query = tep_db_query("select method_name from " . TABLE_SHIPPING_METHODS); while ($ship_method = tep_db_fetch_array($ship_method_query)) { $ship_method_array[] = array('id' => $ship_method['method_name'], 'text' => $ship_method['method_name']); } //end mltship Quote
Guest Posted November 9, 2005 Posted November 9, 2005 Did you take out the multi-ship code from admin/categories.php? //mltship $ship_method_array = array(array('id' => TEXT_NONE, 'text' => TEXT_NONE)); $ship_method_query = tep_db_query("select method_name from " . TABLE_SHIPPING_METHODS); while ($ship_method = tep_db_fetch_array($ship_method_query)) { $ship_method_array[] = array('id' => $ship_method['method_name'], 'text' => $ship_method['method_name']); } //end mltship Thanks, that worked (you bailed me out again!) I do have one other question: Our customer is selling arts & crafts products on the site, but is also using it to enable her customers to pay for workshop classes. It is only the workshop classes that I don't want to put shipping on. Is Multi Vendor the best solution for this or is there a more straightforward way? Quote
Maggilove Posted November 9, 2005 Posted November 9, 2005 Glad to help :D Multi Vendor Shipping would certainly do the job, but possibly a more straightforward solution would be the zero weight skips shipping contribution. Quote
Guest Posted November 10, 2005 Posted November 10, 2005 Glad to help :D Multi Vendor Shipping would certainly do the job, but possibly a more straightforward solution would be the zero weight skips shipping contribution. Smashing :D Thanks! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.