Hi,
I would like to make moneyorders available only on orders more than a certain amount.
Is there a way to configure this ?
Thanks..
Hi,
I would like to make moneyorders available only on orders more than a certain amount.
Is there a way to configure this ?
Thanks..
The modules are controlled by the $this->enabled
Customize it so that when the order total is >= $XXX it is true and false if less ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Hi,
Just to make sure..That's in file:
/public_html/includes/modules/payment/moneyorder.php
Then I should ad:
$this->enabled = (MODULE_PAYMENT_MONEYORDER_TOTAL>=XXX);
Is that right ?
Thanks
To know the total of what is in the shopping cart, use:
$_SESSION['cart']->show_total()
Also, doing the test in the:
function update_status() {
before or after the zone test would be better ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!