Page 197 of 226 FirstFirst ... 97147187195196197198199207 ... LastLast
Results 1,961 to 1,970 of 2252
  1. #1961
    Join Date
    Feb 2007
    Posts
    513
    Plugin Contributions
    2

    Default Re: ozpost shipping module

    Hi Rod,

    Current OzPost versions have a display problem during checkout. I have tested 1.3.9h and 1.5.1 etc. see screenshot links below. I fixed this once, now I forget how I fixed it (something in the checkout_shipping template), can you offer any quick fix for me.

    http://www.budgetwebdesign.com.au/temp/ScreenHunter1.jpg
    www.budgetwebdesign.com.au/temp/ScreenHunter2.jpg
    www.budgetwebdesign.com.au/temp/ScreenHunter3.jpg

    Thanks for your time as always.

  2. #1962
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: ozpost shipping module

    Quote Originally Posted by vandiermen View Post

    Current OzPost versions have a display problem during checkout. I have tested 1.3.9h and 1.5.1 etc. see screenshot links below. I fixed this once, now I forget how I fixed it (something in the checkout_shipping template), can you offer any quick fix for me.

    http://www.zen-cart.com/showthread.p...05#post1226105


    Cheers
    Rod

  3. #1963
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: ozpost shipping module

    Ozpost V3.5.4
    Now available for download http://ozpost.net.au/downloads/?did=1
    It should be available from here http://www.zen-cart.com/downloads.php?do=file&id=899 shortly.

    $Id: ozpost.php,V3.5.4 Feb 24 2014
    Fixed display formating when est days and/or handling fees enabled
    Fixed incorrect handling fees being apllied to overseas prepaid satchels
    Fixed issue of icons and formatting data being inserted into database when single method was selected
    Fixed install/upgrade error with ZenCart V1.5.2
    Added option to provide bulk discount satchel prices from Australia Post
    Fixed issue of weight settings being lost with some upgrades
    Fixed syntax error in clicknsend.php
    Added checks to see whether to use CUSTOM tpl_modules_shipping.php file or whether to copy and use the default one.
    Fixed problem with module aborting if svr1.ozpost responds with incorrect data.
    Added color backgrounds to break configuration options into sections
    Added special rates for FastWay
    Added Fastway Boxes
    Added support for Dangerous Goods.
    Added TNT ONFC Satchels

  4. #1964
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: ozpost shipping module

    I am using the Ozpost module to calculate my shipping. I would like to offer free standard shipping on all orders over a certain amount. And still have the option to choose Express Post if they are in a hurry.
    I can see how you can do free shipping in the Order Total section but this offers no other shipping options.
    Is this option possible?
    Last edited by robbie269; 2 Apr 2014 at 01:29 AM.

  5. #1965
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: ozpost shipping module

    Quote Originally Posted by robbie269 View Post
    I am using the Ozpost module to calculate my shipping. I would like to offer free standard shipping on all orders over a certain amount. And still have the option to choose Express Post if they are in a hurry.
    I can see how you can do free shipping in the Order Total section but this offers no other shipping options.
    Is this option possible?
    Worked it out by using the freeshipping options instead. Would really like to discount the Express Post option if they are entitled to free shipping though and not show the standard shipping option.

  6. #1966
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: ozpost shipping module

    Quote Originally Posted by robbie269 View Post
    Worked it out by using the freeshipping options instead.
    Glad you figured it out. Off the top of my head I didn't have a solution to your problem.

    Quote Originally Posted by robbie269 View Post
    Would really like to discount the Express Post option if they are entitled to free shipping though and not show the standard shipping option.
    This would only be possible by modifying the ozpost code. I don't think it'd be too difficult to do. The 'hard' part would be adding the checks needed to determine if a discounted rate is applicable for any given order. The ozpost code itself (V3.5.4+) already contains code that applies discount rates for the bulk purchase of prepaid satchels so this can be copied/modified so discounts can be applied to the various express post methods.

    Example:
    Code:
      if ((in_array("500g Express Satchel", $this->allowed_methods)) && ($quote->id == "PPSE5")) {
                            $handlingFee = MODULE_SHIPPING_OZPOST_PPSE_HANDLING;
                                if (defined('PPSE5_description')) $quote->description = PPSE5_description; 
                                if ( MODULE_SHIPPING_OZPOST_AP_DISCOUNT1E == '1') { 
                                        $quote->cost = (float)$quote->cost - ((float)$quote->cost * 0.05 ); } 
                                 elseif (MODULE_SHIPPING_OZPOST_AP_DISCOUNT1E == '2') {
                                      $quote->cost =  (float)$quote->cost - ((float)$quote->cost * 0.125) ;  }
                                elseif (ADD YOUR CHECK HERE) {
                                      $quote->cost =  (ADD YOUR REQUIRED COST OR FORMULA HERE)   ;  }
    This example is for the 500gm Express Satchels. It will need to be replicated/added for each of the other satchels and Express parcels.

    Unfortunately you will need to re-do this whenever the ozpost module is upgraded.

    Cheers
    RodG

  7. #1967
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: ozpost shipping module

    I looked at some other websites that offer free postage beyond a certain amount and they don't seem to discount the Express Post. So maybe I won't bother either. I may just see how it goes for now.

  8. #1968
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: ozpost shipping module

    Quote Originally Posted by robbie269 View Post
    I looked at some other websites that offer free postage beyond a certain amount and they don't seem to discount the Express Post. So maybe I won't bother either. I may just see how it goes for now.
    Perhaps they don't offer it because they don't have the same kind of support that will allow them to do it.

    Little things like this could give you the edge over your competitors.

    Just saying.

    Cheers
    RodG

  9. #1969
    Join Date
    Feb 2010
    Location
    New South Wales, Australia
    Posts
    228
    Plugin Contributions
    0

    Default Re: ozpost shipping module

    Quote Originally Posted by RodG View Post
    elseif (ADD YOUR CHECK HERE) {$quote->cost = (ADD YOUR REQUIRED COST OR FORMULA HERE) ; }
    The Check would be that Free Postage has been activated. The formula would be Express Postage minus Standard Postage but I am not sure what terms I need to use. Total novice at PHP.

  10. #1970
    Join Date
    Mar 2014
    Location
    Melbourne Australia
    Posts
    7
    Plugin Contributions
    0

    Default Re: ozpost shipping module

    Hi ROBG

    I am using the latest ZEN Cart Version and have had your Ozpost Module installed when i go to the product and enter the dimensions and weights that's fine then go to and preview update i went back in to the product to find the measurements are blank i entered L 8.50 W 5.50 H 3.50 and when i returned they all read 0.00 could please give me some idea as to the cause please
    Thanks John

 

 

Similar Threads

  1. v151 Product dimensions revert to 0 - using ozpost module
    By mpforum in forum General Questions
    Replies: 8
    Last Post: 18 Apr 2014, 09:49 AM
  2. Ozpost and module help
    By janelle in forum Addon Shipping Modules
    Replies: 2
    Last Post: 15 Jun 2012, 09:19 AM
  3. Ozpost Combine shipping !! Possible ?
    By toytemple in forum Addon Shipping Modules
    Replies: 7
    Last Post: 21 Jan 2010, 02:22 PM
  4. ozpost module problems
    By hspark in forum Addon Shipping Modules
    Replies: 19
    Last Post: 7 Dec 2009, 12:44 PM
  5. store pick-ip in ozpost shipping module
    By lazerweb in forum Addon Shipping Modules
    Replies: 2
    Last Post: 29 Jul 2008, 05:04 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