Page 24 of 34 FirstFirst ... 142223242526 ... LastLast
Results 231 to 240 of 340
  1. #231
    Join Date
    Feb 2009
    Posts
    22
    Plugin Contributions
    0

    Default Re: Optional Shipping Insurance Module Support Thread...

    Question?

    Have just installed the mod, very simple and easy, great stuff - just one thing not sure about if you can clarify for me.

    Do I need to install the SQL patch if only using USA in zone 1 and not using insurance for any international zones?

    Please advise.

    Best regards

    P.S. Thanks Sage, and everyone for this, great mod and great work.

  2. #232
    Join Date
    Oct 2008
    Posts
    17
    Plugin Contributions
    0

    Default Re: Optional Shipping Insurance Module Support Thread...

    Quote Originally Posted by princess_care View Post
    Question?

    Have just installed the mod, very simple and easy, great stuff - just one thing not sure about if you can clarify for me.

    Do I need to install the SQL patch if only using USA in zone 1 and not using insurance for any international zones?

    Please advise.

    Best regards

    P.S. Thanks Sage, and everyone for this, great mod and great work.
    it wouldn't calculate for me until I ran the sql patch, uninstalled and reinstalled. we only use it for the US.
    now it works great, though.

  3. #233
    Join Date
    Feb 2009
    Posts
    22
    Plugin Contributions
    0

    Default Re: Optional Shipping Insurance Module Support Thread...

    Thanks erinn

    Awesome reply, loaded up sql, uninstalled module in total payment in admin, then reinstalled - chose USA for zone and modified table rates accordingly - saw the difference straight away after installing SQL patch then uninstalling and reinstalling mod in the admin panel.

    I see what you mean, does make a difference.

    Awesome reply, thanks erinn.



    Everything seems to be working okay, will let you know if come across any probs . . .

  4. #234
    Join Date
    Apr 2009
    Location
    Los Angeles, California
    Posts
    131
    Plugin Contributions
    0

    Default Re: Optional Shipping Insurance Module Support Thread...

    can someone copy/paste me the default UPS table rates for the insurance?

    thanks

  5. #235
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    633
    Plugin Contributions
    4

    Default Re: Optional Shipping Insurance Module Support Thread...

    I want the optional insurance dialogue box to display by default on the page for selecting insurance.

    When insurance is automatically added to an order, I want the dialogue box to display a statement that an amount of shipping insurance has been automatically added to the customer's order.

    I also want to switch the position of the checkbox and insurance amount, so that the checkbox is to the left of the insurance amount.

    If these things are possible, can someone please advise upon how to do same.

    TIA

  6. #236
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    633
    Plugin Contributions
    4

    Default Re: Optional Shipping Insurance Module Support Thread...

    Further to my post above, I would also like separate base and incremental rates to be provided for national and international shipping.

    At the moment, there is only one base and incremental rate, which is used for both national and international shipping, and which kicks in after the table rates are exceeded.

    TIA

  7. #237
    Join Date
    Mar 2009
    Location
    New Jersey USA
    Posts
    70
    Plugin Contributions
    0

    Default Re: Optional Shipping Insurance Module Support Thread...

    I have got the module working I think but noticed that the rate it quoted was far less than USPS.

    I checked to see that the rates have actually increased since the module (Version 3.16) came out, so I changed them:

    50:1.70,100:2.15,200:2.60,300:4.60,400:5.55,500:6.50,600:7.45

    The only problem I see is that there is no calculation for the 'Greater than 600' which the USPS calculates as:

    7.70 + 1.00 per 100.00 over 600.00

    How can I include that in the rate table?

    Great work on the module by the way; very easy to configure.

    Thanks,

    Morris
    Morris Bagnall
    Owner
    http://astrolaugh.com

  8. #238
    Join Date
    Sep 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Optional Shipping Insurance Module Support Thread...

    Quote Originally Posted by moggi1964 View Post
    I have got the module working I think but noticed that the rate it quoted was far less than USPS.

    I checked to see that the rates have actually increased since the module (Version 3.16) came out, so I changed them:

    50:1.70,100:2.15,200:2.60,300:4.60,400:5.55,500:6.50,600:7.45

    The only problem I see is that there is no calculation for the 'Greater than 600' which the USPS calculates as:

    7.70 + 1.00 per 100.00 over 600.00

    How can I include that in the rate table?

    Great work on the module by the way; very easy to configure.

    Thanks,

    Morris
    The support thread that came with the download:
    http://www.numinix.com/forum/viewtopic.php?t=23
    says that it should handle it this way:
    "With the release of v3.13, when an order is more than the maximum rate returned by the table rate, then the script starts to use the increment rate for the amount above the maximum returned rate.

    For example, if in the configuration you have:
    Insurance Rate: $0.50
    Incrememt Amount: $100
    Table Rate: 100:2,200:3,300:3.5

    Then, if a customer addes $400 to their cart, the script will return $4.00 ($3.50 + $0.50). If the customer adds $401 or more, then the script would return $4.50."

    Unfortunately, when I tried to set it up this way, I got a shipping insurance value of 0.00 for any orders over the maximum in the table.

    Since we wholesale products and have large orders of all different amounts, I too would like to figure out how to make the table increment for values over the maximum.

    Also, is there any way to eliminate the shipping insurance from certain methods (like it does for the store/walkin option)? I also want to exclude it from fedex ground and fedex express, so that shipping only appears as an option with USPS.

    Thanks,
    Melissa

  9. #239
    Join Date
    Sep 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Optional Shipping Insurance Module Support Thread...

    I'm still trying to figure out how to exclude the optional insurance from fedex, so that it will only be available for USPS.

    In includes/modules/order_total/ot_insurance.php, I believe this phrase excludes the insurance for in store pickup:

    if ($_SESSION['shipping']['id'] == 'storepickup_storepickup') {
    class ot_insurance extends base{
    function process() {
    }
    }
    } else {

    But if I try changing the first line to:

    if ($_SESSION['shipping']['id'] == 'fedexexpress_fedexexpress') {

    nothing seems to happen. The insurance still shows up for fedexexpress. Is there a different name I should use for fedexexpress? Where can I find this info to plug in there?

    Once I can get it to work for fedexexpress, would the logic to exclude insurance for both store pickup and fedex look like this?:

    if ($_SESSION['shipping']['id'] == 'storepickup_storepickup' || $_SESSION['shipping']['id'] == 'fedexexpress_fedexexpress') {

    Thanks! I'm still new to php, so it's a bit trial and error.
    Melissa

  10. #240
    Join Date
    Oct 2007
    Posts
    105
    Plugin Contributions
    0

    Default Re: Optional Shipping Insurance Module Support Thread...

    Just one quick question... I got it to work (yeah)! But I'd like to modify the way the box looks on the checkout page. Can the insurance dollar amount be moved up next to the words asking the customer if they would like to add it?

 

 
Page 24 of 34 FirstFirst ... 142223242526 ... LastLast

Similar Threads

  1. Disable entire shipping module?
    By jdl in forum Built-in Shipping and Payment Modules
    Replies: 6
    Last Post: 5 Jun 2006, 05:51 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •