Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

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

Posted

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

Posted
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?

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...