Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Amount till free shipping


MissCC

Recommended Posts

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.

Link to comment
Share on other sites

  • 6 months later...
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

Link to comment
Share on other sites

  • 3 months later...
  • 5 weeks later...

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 by thellis
Link to comment
Share on other sites

  • 1 month later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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