Hello,
I have been messing around with cloning this shipping module and finally got it working. I have a slight issue with one part of it though. I cloned the module to offer International customers a first class shipping option for orders up to $50.00. Everything works great except when the order is over $50.00, I need the shipping option not to be displayed and only display the USPS Priority mail option.

I did find one of AJEH's posts about disabling modules over a certain weight but I haven't got weights added to our store yet because we are dealing with approximately 15,000 parts at the moment.

Here is the code snippet that I found in Ajeh's Post #266:

if (zen_get_shipping_enabled($this->code)) {
$this->enabled = ((MODULE_SHIPPING_ZONETABLE_STATUS == 'True') ? true : false);
}
// bof: disable for weight >= 150
if (!IS_ADMIN_FLAG && $_SESSION['cart']->show_weight() >= 150) {
$this->enabled = false;
}
// eof: disable for weight >= 150

if ($this->enabled == true) {

Can you make any suggestions on how to modify the above code to work with cost rather than weight? I need it to be disabled for any order over $50.00.

Thanks in advance for any help you can offer.