Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

when I check the boxes of services I don't want, it doesn't save the options, has anyone had this problem?, I only want to offer ground shipping and when I try to check out I get all these other options as well, please if anyone knows how to fix this it would be greatly appreciated

Thank you for your time

 

Kelly

Posted

Kelly,

 

Remove all unwanted shipping methods from within Admin>modules>shipping

 

 

 

Chris

Posted

when I check the boxes of services I don't want, it doesn't save the options, has anyone had this problem?, I only want to offer ground shipping and when I try to check out I get all these other options as well, please if anyone knows how to fix this it would be greatly appreciated

Thank you for your time

 

Kelly

 

I seem to have fixed the issue:

 

I looked at a different modules.php file from my admin directory and found this line was different

so I changed this line:

 

while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) {

 

 

to this:

 

 

 

foreach($_POST['configuration'] as $key => $value) {

if (is_array($value) ) {

$value = implode( ", ", $value);

$value = ereg_replace (", --none--", "", $value);

}

 

and it seems to be working now, just in case anyone has had the same problem, I thought this would help

 

Kelly

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...