kelly236 Posted June 4, 2010 Posted June 4, 2010 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 Quote
Guest Posted June 4, 2010 Posted June 4, 2010 Kelly, Remove all unwanted shipping methods from within Admin>modules>shipping Chris Quote
kelly236 Posted June 4, 2010 Author Posted June 4, 2010 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 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.