Results 1 to 10 of 336

Hybrid View

  1. #1
    Join Date
    Jun 2011
    Posts
    20
    Plugin Contributions
    0

    Default Re: USPS Shipping Module - RateV4, IntlRateV2 - Support Thread

    I have the latest module installed and it works so much better! I want to offer flat rate priority mail service, but for every cart it offers small, medium and large boxes and I'm sure my customers will choose the cheaper option. Is there a way to control which option is presented to the customers by some attribute?

  2. #2
    Join Date
    Dec 2006
    Location
    Australia
    Posts
    92
    Plugin Contributions
    1

    Default Re: USPS Shipping Module - RateV4, IntlRateV2 - Support Thread

    Quote Originally Posted by kwrosenzweig View Post
    For every cart it offers small, medium and large boxes and I'm sure my customers will choose the cheaper option. Is there a way to control which option is presented to the customers by some attribute?
    With the current module functionality - no.

    The moment one of the dimensions goes over 12" it will disable all the flat-rate or "regular" size options.

    I will post an update this weekend which fixes:
    The minor bug mentioned in the previous post.
    Speed improvement going from checkout_shipping --> checkout_payment page.
    Adding USPS specified dimensions to the flat rat boxes so the dimension config can be used to filter them by weight.

    I haven't looked into the USPS envelope sizing limits/exceptions for various services. If USPS put all this info in one convenient spot I would really appreciate it. It seems like it's all over the place!

    I might add an option that allows people to enable or disable size-limit checking for envelopes and packages so the functionality doesn't get in the way.

  3. #3
    Join Date
    Dec 2006
    Location
    Australia
    Posts
    92
    Plugin Contributions
    1

    Default Re: USPS Shipping Module - RateV4, IntlRateV2 - Support Thread

    Just a quick update.

    Weight filtering is going and someone is helping me test that feature.

    I also implemented quote caching to speed stop the same quote from being retrieved more than once in a customers session. This should speed up going from 'checkout_shipping' to 'checkout_payment'.

    I decided to hold off from releasing to get another option going.
    Filtering shipping quotes by volume. (see attached)

    To use this feature there is a small patch to apply to the shop database. It's harmless and doesn't change your data. It only converts the products_weight field to "double" precision and keeps all existing data. It allows me to store the volume in the additional digits.

    I just thought of this - but if you use product attributes my volume handling code will work for that too, since an attribute can add extra weight to a product it can also add the extra volume simultaneously!

    The beauty of this approach: I don't need to edit any core files or change the product admin section to implement it.

    Here is the SQL Query you will need to run:
    Code:
    ALTER TABLE products CHANGE products_weight products_weight DOUBLE NOT NULL DEFAULT '0';
    UPDATE products SET products_weight=ROUND(`products_weight`,5);
    ALTER TABLE products_attributes CHANGE products_attributes_weight products_attributes_weight` DOUBLE NOT NULL DEFAULT '0';
    UPDATE products_attributes SET products_attributes_weight=ROUND(`products_attributes_weight`,5);
    Attached Images Attached Images  

  4. #4
    Join Date
    Jun 2011
    Posts
    14
    Plugin Contributions
    0

    Default Re: USPS Shipping Module - RateV4, IntlRateV2 - Support Thread

    Quote Originally Posted by Marco B View Post
    Just a quick update.

    Weight filtering is going and someone is helping me test that feature.

    I also implemented quote caching to speed stop the same quote from being retrieved more than once in a customers session. This should speed up going from 'checkout_shipping' to 'checkout_payment'.

    I decided to hold off from releasing to get another option going.
    Filtering shipping quotes by volume. (see attached)

    To use this feature there is a small patch to apply to the shop database. It's harmless and doesn't change your data. It only converts the products_weight field to "double" precision and keeps all existing data. It allows me to store the volume in the additional digits.

    I just thought of this - but if you use product attributes my volume handling code will work for that too, since an attribute can add extra weight to a product it can also add the extra volume simultaneously!

    The beauty of this approach: I don't need to edit any core files or change the product admin section to implement it.

    Here is the SQL Query you will need to run:
    Code:
    ALTER TABLE products CHANGE products_weight products_weight DOUBLE NOT NULL DEFAULT '0';
    UPDATE products SET products_weight=ROUND(`products_weight`,5);
    ALTER TABLE products_attributes CHANGE products_attributes_weight products_attributes_weight` DOUBLE NOT NULL DEFAULT '0';
    UPDATE products_attributes SET products_attributes_weight=ROUND(`products_attributes_weight`,5);
    I am gonna ask a stupid question since I am fairly new to zen-cart. This is the exact problem I am having with my shipping module, but I do not know where to put this SQL, can you give me some direction please. Greatly appreciated, I have been working on this module for over a few weeks, and that is the last problem I have left. Thanks for your help

 

 

Similar Threads

  1. Optional Shipping Insurance Module [Support Thread]
    By jettrue in forum Addon Shipping Modules
    Replies: 415
    Last Post: 6 Jul 2026, 02:45 PM
  2. Replies: 29
    Last Post: 24 Sep 2014, 09:59 PM
  3. v151 USPS Shipping RateV4-IntlRateV2
    By Christian_Wagner in forum Addon Shipping Modules
    Replies: 2
    Last Post: 17 May 2013, 04:43 PM
  4. v151 USPS Shipping Module Update - RateV4 - IntlRateV2
    By omegaman66 in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 28 Oct 2012, 08:40 PM
  5. USPS RateV4, IntlRateV2 support and etc..
    By Marco B in forum Addon Shipping Modules
    Replies: 8
    Last Post: 30 May 2011, 10:55 AM

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