Page 22 of 42 FirstFirst ... 12202122232432 ... LastLast
Results 211 to 220 of 415
  1. #211
    Join Date
    Apr 2009
    Location
    Los Angeles, California
    Posts
    128
    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

  2. #212
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    978
    Plugin Contributions
    6

    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

  3. #213
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    978
    Plugin Contributions
    6

    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

  4. #214
    Join Date
    Mar 2009
    Location
    New Jersey USA
    Posts
    67
    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

  5. #215
    Join Date
    Sep 2008
    Posts
    21
    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

  6. #216
    Join Date
    Sep 2008
    Posts
    21
    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

  7. #217
    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?

  8. #218
    Join Date
    Mar 2009
    Location
    New Jersey USA
    Posts
    67
    Plugin Contributions
    0

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

    Quote Originally Posted by ladyink View Post
    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?
    It would be great if you shared how you got it to work

  9. #219
    Join Date
    Jun 2009
    Location
    OK
    Posts
    3
    Plugin Contributions
    0

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

    Great add on just one very small problem I am having.
    It is adding insurance when the total is less than $100.00 using UPS.

    Let's say they buy $120.00 worth of stuff but get a 35% discount. It is charging them for insurance but the bottom line is less than $100.00 for which UPS does not charge insurance.
    It is looking at the sub-total and not the price after the discount.
    I have played around with the sort order but with no luck. Like I said it is not a big deal but was just wandering if anyone had a solution for this.

    I am using version 1.3.8a and I believe version 3.13 for the insurance add on.

    Thanks in advance

  10. #220
    Join Date
    May 2009
    Posts
    6
    Plugin Contributions
    0

    Idea or Suggestion Re: Optional Shipping Insurance Module Support Thread...

    finally got mine working,
    You must set one zone in order for this to work, even if you are not using the table


 

 
Page 22 of 42 FirstFirst ... 12202122232432 ... LastLast

Similar Threads

  1. Optional Shipping Insurance Module Question
    By kminnich in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 7 Oct 2008, 01:16 AM
  2. Optional Shipping Insurance Module
    By Darkwander in forum Addon Shipping Modules
    Replies: 2
    Last Post: 9 Oct 2006, 02:18 AM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR