MissCC Posted August 29, 2006 Share Posted August 29, 2006 Hi! I installed the 'Amount till free shipping' contribution. The amount was originally setted up at $50 but I change it in the administration panel for $150. It doesn't change on my shopping cart block, it's still at $50. I don't know how to do to change it then. Please help/Thanks. Quote Link to comment Share on other sites More sharing options...
Spiceworld Posted March 1, 2007 Share Posted March 1, 2007 Hi! I installed the 'Amount till free shipping' contribution. The amount was originally setted up at $50 but I change it in the administration panel for $150. It doesn't change on my shopping cart block, it's still at $50. I don't know how to do to change it then. Please help/Thanks. Hi Did you ever get this working properly as i have the same error. Cheers Richard Quote Link to comment Share on other sites More sharing options...
macombmarineparts Posted June 20, 2007 Share Posted June 20, 2007 Has anyone solved this? Thanks Quote Link to comment Share on other sites More sharing options...
Guest Posted July 20, 2007 Share Posted July 20, 2007 (edited) havnt tried this but a thought- perhaps try updating the dbase directly and see what happens? for those of you who don't know how to do this, just use this script. You will need to change the following lines: $db["host"] = 'localhost'; $db["user"] = 'user'; $db["pass"] = 'password'; $db["dbase"] = 'database'; $price = 150; <pre> <?php $db["host"] = 'localhost'; $db["user"] = 'user'; $db["pass"] = 'password'; $db["dbase"] = 'database'; $db["table"] = 'configuration'; $price = 150; mysql_connect($db["host"], $db["user"], $db["pass"]) or die('Could not connect: ' . mysql_error()); echo "Connected to host\n"; mysql_select_db($db["dbase"]) or die('Could not select database'); echo "Selected database\n"; $query = "UPDATE `" . $db["table"] . "` SET `configuration_value`=$price WHERE `configuration_key`='MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER'"; $result = mysql_query($query) or die('Query failed: ' . mysql_error()); echo "Query Success!\n"; ?> </pre> Haven't tested that- PM for any query's! Edited July 20, 2007 by thellis Quote Link to comment Share on other sites More sharing options...
Guest Posted July 20, 2007 Share Posted July 20, 2007 Okay. Sorry about the double post, but I just confirmed it. If you change the value directly in the database, it will work :) Quote Link to comment Share on other sites More sharing options...
shubbert Posted September 19, 2007 Share Posted September 19, 2007 What Im trying to do is set a price fro an item for shipping as the standar proce fro $7.95, if they decide to purchase more producst I want tonly charge them $3.95 for each additional item. Is this possible an how? Quote Link to comment Share on other sites More sharing options...
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.