Anyone using this module for freight quotes in zencart-version 1.51
How is it working for you.
Anyone using this module for freight quotes in zencart-version 1.51
How is it working for you.
i believe this module is the same one that is in the downloads and was written for version 1.37, I downloaded from Frieghtquote.com
i am running zen-cart version 1.51 and have installed this module. It is working however there are a few issues with it.
1. wont change from customer provided input. For instance i have default of Residential Checked off, When customer chooses Commercial It Processes but doesn't Change to Commercial. I think because v1.37 had a different database than v1.51
2.Wont show a rate if weight has a decimal, Has to be rounded to the nearest Lb.
Does anyone Know how to correct these issues?
Thankyou
Jimmie
3. Also does not show a rate if not logged in
i need to change this code
i have a default choose selected,when they go to shopping cart it shows my default selection (Residence). Right now when a customer chooses another selection (Commercial) it redirects them to FILENAME_CHECKOUT_SHIPPING with (Residence) still selectedand will not change.Code:$shipping_form .= '<select name="freightquote_delivery_location" onchange="window.location.href=\'' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, 'freightquote_delivery_location=') . '\'+this.value">';
i changed the code to this
and when on shopping page it works as expected.but checkout shipping still doesnt work goes back to FILENAME_SHOPPING_CART, need the proper name to go in here so it works on both pagesCode:$shipping_form .= '<select name="freightquote_delivery_location" onchange="window.location.href=\'' . zen_href_link(FILENAME_SHOPPING_CART, 'freightquote_delivery_location=') . '\'+this.value">';
i need to hide FLORIDA from showing, but show to everyone else.(i use another module to handle Florida)
i added this because i dont want it to show if under 150 to anyone
thankyouCode:if (!IS_ADMIN_FLAG) { global $cart; if ($_SESSION['cart']->weight < 150 ) { $this->enabled = false; } }
jimmie
Could you give more details?
What are you trying to hide from FLORIDA?
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!
Don't want shipping module to show when customer wants it shipped to Florida or show if under 150 lbs.
You could try this, for example if you were customizing the Zone Rate zones shipping module you would add the code in RED:
Where 18 is the zone_id for Florida ...Code:// disable only when entire cart is free shipping if (zen_get_shipping_enabled($this->code)) { $this->enabled = ((MODULE_SHIPPING_ZONES_STATUS == 'True') ? true : false); } global $total_weight, $order; //echo 'zones total_weight: ' . $total_weight . ' Zone: ' . $order->delivery['zone_id'] . '<br>'; if ($order->delivery['zone_id'] == 18 || $total_weight >= 150) { $this->enabled = false; }
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!
At work try it later, but does it disable under 150 everywhere else.
thankyou
Change that to < vs >= as I wrote that backwards ...
The limit for weight is to block it for everyone ...
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!