Re: Optional Shipping Insurance Module Support Thread...
hi there,
I am having the same problem - the insurance text is showing up in one corner of teh page in a column. I tried the dit recommended but no luck - still the same...please assist.
also, is there a way to link the insurance with only a certain shipping module rather than generic shipping/s.
thanks
N
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
pcspot
hi there,
I am having the same problem - the insurance text is showing up in one corner of teh page in a column. I tried the dit recommended but no luck - still the same...please assist.
also, is there a way to link the insurance with only a certain shipping module rather than generic shipping/s.
thanks
N
A) could I see your site?
B) no, unfortunately not....
Re: Optional Shipping Insurance Module Support Thread...
Hello,
Is it possible to have the shipping insurance be part of the total used for tax calculation? I thought setting the Tax option to taxable goods would do it but it is not showing up in the tax amount.
Thanks,
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
redsail
Hello,
Is it possible to have the shipping insurance be part of the total used for tax calculation? I thought setting the Tax option to taxable goods would do it but it is not showing up in the tax amount.
Thanks,
Its adding it on my test site. It adds it to the shipping insurance cost, not the tax cost.
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
jettrue
Its adding it on my test site. It adds it to the shipping insurance cost, not the tax cost.
I tried the test site in the first page, and I'm not seeing the tax from shipping insurance in the shipping insurance line or tax line.
I added a single $29.99 product and it shows Tax $1.96 (which does not equal 29.99*7%) and shipping insurance of $1.35 (which is default for the value range).
Am I doing something wrong?
Thanks!
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
redsail
I tried the test site in the first page, and I'm not seeing the tax from shipping insurance in the shipping insurance line or tax line.
I added a single $29.99 product and it shows Tax $1.96 (which does not equal 29.99*7%) and shipping insurance of $1.35 (which is default for the value range).
Am I doing something wrong?
Thanks!
I don't know how you set up tax, it can be tricky, so its very likely something went wrong somewhere if it is not working correctly; on my test 1.3.7 install, tax calculates fine, and shipping insurance gets its own tax added correctly.
Read the tax tutorial, and maybe start fresh with tax rates and zones.
https://www.zen-cart.com/tutorials/index.php?article=76
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
Ryk
...the next requirement is to exclude it completely from the Store Pickup option! This would probably take a proficient php coder a matter of minutes...
Read this whole thread and nobody answered this question. Guess there must not be many people that allow Store Pickups.
Any ideas? TIA...
- Scott
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
sneader
Read this whole thread and nobody answered this question. Guess there must not be many people that allow Store Pickups.
Any ideas? TIA...
- Scott
Sorry, I'm not sure how to do this. People ordering via Store Pickup, can just de-select insurance. :smile:
Re: Optional Shipping Insurance Module Support Thread...
Quote:
Originally Posted by
jettrue
Sorry, I'm not sure how to do this. People ordering via Store Pickup, can just de-select insurance. :smile:
We require insurance on all shipments.
I really appreciate your efforts on this module, Jade. It just seems odd to me how full-featured ZenCart is, yet the basic concept of insurance somehow got overlooked. :(
- Scott
Re: Optional Shipping Insurance Module Support Thread...
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
}