Re: Optional Shipping Insurance Module Support Thread...
On the store pickup issue, I'm not sure if this answers the question or has been covered, but I configured in-store pickup and it works alongside the optional shipping insurance mod just fine.
Re: Optional Shipping Insurance Module Support Thread...
We REQUIRE insurance, it is not optional. But of course you don't need insurance if you are picking up the item and not using a shipper.
I don't know how to stop this module from adding insurance to store pickup. Again, just super surprised that the concept of insurance was somehow left out of ZenCart. I appreciate Jen's 3rd party module... at least I can include insurance now, even if I look like a dork for charging insurance on a store pickup. :)
- Scott
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
sneader
We REQUIRE insurance, it is not optional. But of course you don't need insurance if you are picking up the item and not using a shipper.
I don't know how to stop this module from adding insurance to store pickup. Again, just super surprised that the concept of insurance was somehow left out of ZenCart. I appreciate Jen's 3rd party module... at least I can include insurance now, even if I look like a dork for charging insurance on a store pickup. :)
- Scott
Did you see Ajeh's response?
1 Attachment(s)
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
Ajeh
I don't have the insurance module running around but you could use this IF statement to determine when to use or not use it:
PHP Code:
if ($_SESSION['shipping']['id'] == 'storepickup_storepickup') {
// do stuff
} else {
// don't do stuff
}
Hi Linda. I looked at this module for a while and all I got was a headache. Would you mind taking a peek at it when you have time? (php file attached as a .txt). If not, I understand....
- Scott
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
Jeffey
Trying to get the insurance to work reasonably well for both USPS and UPS rates since I use UPS in the U.S. and USPS to other countries.
USPS with rate chart selected works great of course but then UPS rate is significantly higher than actual UPS rates because they are using USPS higher insurance rates.
I've been working with percentages to get them both to be at least close to actual cost but when I use percentage I get this message on checkout step 3:
Warning: Missing argument 2 for zen_add_tax() in ../zencart/includes/functions/functions_taxes.php on line 94
Line 94 reads (along with comment above):
////
// Add tax to a products price based on whether we are displaying tax "in" the price
function zen_add_tax($price, $tax) {
However, tax appears to be adding correctly, or not showing as it should in every place but my state but message always shows regardless.
Anyone run across this before or figured out a way to have the module work for both USPS and UPS depending on option provided at checkout?
In my case shipping method happens automatically based on U.S./non-U.S. and no choice is given.
Thanks.
I am also getting this error after installing the OSIM on an otherwise working Zen 1.3.7 installation. Has anyone made any headway on this yet?
Re: Optional Shipping Insurance Module Support Thread...
Been a while since I revisited this thread (though I glance at email updates) but it doesn't look like anyone has tackled this.
Personally I gave up and now just charge everyone $0.75 for insurance. I haven't taken the time to figure out the lose/gain on the total orders but I'm sure it is not significant either way. Prior to Zen I generally took a small lose at the end of the year for shipping charges anyway.
UPS covers up to $100 without insurance so orders under that are bumping another $0.75. I think the new USPS (I only ship via Air Priority International) now has indemnity coverage around $60-75 for many Countries so, again, this level of order through in another $0.75.
Huge orders don't worry me since I just write it off towards making a nice order.
I'm sure there are other workarounds that will end up equally well. Mine is mandatory and every customer sees it before submitting anyway and no one has had an issue with it to date.
Truth is so many businesses/people overcharge for shipping and/or add a "handling" charge that my total shipping is affordable and most comment on how reasonable it is.
Re: Optional Shipping Insurance Module Support Thread...
I added this module and it works on 1.3.7. :) Thanks! I was wondering if it's possible to do two things:
1) Offer the insurance option on the shipping step of checkout (checkout_shipping) instead of the payment step of checkout (checkout_payment)
2) Display the cost of the insurance when using USPS rates (right now customers have to check the box, enter their method of payment and proceed to the next step of checkout without knowing how much they're going to be charged for insurance).
If it's not possible to do both, the second is a higher priority for me. :)
thank you!
-Lis
Re: Optional Shipping Insurance Module Support Thread...
I'm also getting that error message...
Warning: Missing argument 2 for zen_add_tax() in ../zencart/includes/functions/functions_taxes.php on line 94
Line 94 reads (along with comment above):
////
// Add tax to a products price based on whether we are displaying tax "in" the price
function zen_add_tax($price, $tax) {
It is fine on Amounts, just not percentages.
Is there anyone smart enough out there to compare the Amount vs Percentage calculations and perhaps spot the error? Its probably in ordertotal/ot_insurance.php between lines 165 and 173.
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
diannev
I'm also getting that error message...
Warning: Missing argument 2 for zen_add_tax() in ../zencart/includes/functions/functions_taxes.php on line 94
Line 94 reads (along with comment above):
////
// Add tax to a products price based on whether we are displaying tax "in" the price
function zen_add_tax($price, $tax) {
It is fine on Amounts, just not percentages.
Is there anyone smart enough out there to compare the Amount vs Percentage calculations and perhaps spot the error? Its probably in ordertotal/ot_insurance.php between lines 165 and 173.
I don't get this error. Make sure that even though you're using percentage, have values in the rate, increment amount, etc... meaning leave nothing blank.
1 Attachment(s)
Re: Optional Shipping Insurance Module Support Thread...
OK, sorry guys, there is an issue with percentage, sorry I missed it.
Please try this version of includes/modules/order_total/ot_insurance.php, and test it out for me. If there are no issues, I'll upload the new version to the download site.