MissCC 0 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. Share this post Link to post Share on other sites
Spiceworld 0 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 Share this post Link to post Share on other sites
macombmarineparts 0 Posted June 20, 2007 Has anyone solved this? Thanks Share this post Link to post Share on other sites
thellis 0 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 Share this post Link to post Share on other sites
thellis 0 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 :) Share this post Link to post Share on other sites
shubbert 0 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? Share this post Link to post Share on other sites