Page 1 of 2 12 LastLast
Results 1 to 10 of 2252

Hybrid View

  1. #1
    Join Date
    Dec 2009
    Location
    Gold Coast, Australia
    Posts
    170
    Plugin Contributions
    0

    Default Re: ozpost shipping module

    Hi Rod

    Just wondering if you can help me. I have ozpost installed and i have set the error amount up but when a customer orders alot and it goes back to my error amount the customer can't use it. It wont let them past step 2 in the check out and when it does it brings up a error screen saying the webpage format is not supported do you know what this could be.

    Thanks

  2. #2
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: ozpost shipping module

    Hi Rod,

    Just a piece of assistance if you wouldn't mind.

    I want to remove the bracketed delivery method that appears at step 2 of the checkout process., such as

    Delivery (3Kg Prepaid Satchel) and replace it with

    Delivery - Prepaid Satchel. (ie remove the brackets and the reference to the 3Kg)


    Thanks,
    Mike

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

    Default Re: ozpost shipping module

    Quote Originally Posted by Mike_Dean View Post
    Hi Rod,

    Just a piece of assistance if you wouldn't mind.

    I want to remove the bracketed delivery method that appears at step 2 of the checkout process., such as

    Delivery (3Kg Prepaid Satchel) and replace it with

    Delivery - Prepaid Satchel. (ie remove the brackets and the reference to the 3Kg)


    Thanks,
    Mike
    Removing the "3kg" reference can be achieved in a similar manner that has previously been discussed.

    Removing the brackets is something I can't really help with. They are not added by the ozpost module, but rather by the checkout page(s) themselves, so that is where you'll need to be looking.

    Cheers
    Rod

  4. #4
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: ozpost shipping module

    Quote Originally Posted by RodG View Post
    Removing the "3kg" reference can be achieved in a similar manner that has previously been discussed.

    Removing the brackets is something I can't really help with. They are not added by the ozpost module, but rather by the checkout page(s) themselves, so that is where you'll need to be looking.

    Cheers
    Rod
    Thanks Rod,

    I manged to get rid of the brackets...

    but the other part has got me stumped..

    The earlier efforts removed the 3Kg from the shipping estimator, but I cant seem to fathom where, and in what file to edit to remove the reference from the checkout process pages.

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

    Default Re: ozpost shipping module

    Quote Originally Posted by Mike_Dean View Post
    Thanks Rod,

    I manged to get rid of the brackets...

    but the other part has got me stumped..

    The earlier efforts removed the 3Kg from the shipping estimator, but I cant seem to fathom where, and in what file to edit to remove the reference from the checkout process pages.
    The checkout process pages will get this data from the ozpost module.

    In the places where you altered ozpost.php to remove the 3Kg from the shipping estimator I seem to recall we were modifying the $description variable, correct? If so, you'll need to add more code to modify the
    $quote->description variable as well.
    Don't let the funny looking name scare you .. it is just another variable that the ozpost module uses in places where icons aren't suitable.. IOW, whereas "$description" is the iconised/tabulated "prettied up" description, the $quote->description variable is the "raw text".

    Cheers
    Rod

  6. #6
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: ozpost shipping module

    Quote Originally Posted by RodG View Post
    The checkout process pages will get this data from the ozpost module.

    In the places where you altered ozpost.php to remove the 3Kg from the shipping estimator I seem to recall we were modifying the $description variable, correct? If so, you'll need to add more code to modify the
    $quote->description variable as well.
    Don't let the funny looking name scare you .. it is just another variable that the ozpost module uses in places where icons aren't suitable.. IOW, whereas "$description" is the iconised/tabulated "prettied up" description, the $quote->description variable is the "raw text".

    Cheers
    Rod
    Thanks Rod..

    if ( $quote->description == "3Kg Prepaid Satchel Express") { $quote->description = "Express Satchel" ; } straight after the other mod did the trick..

    Much appreciated..

    Mike

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

    Default Re: ozpost shipping module

    Quote Originally Posted by Mike_Dean View Post
    Thanks Rod..

    if ( $quote->description == "3Kg Prepaid Satchel Express") { $quote->description = "Express Satchel" ; } straight after the other mod did the trick..

    Much appreciated..

    Mike
    If you are interested in optimising this, both changes van be done at the same time as a result of just a single test.... eg:

    if ( $quote->description == "3Kg Prepaid Satchel Express") { $quote->description = "Express Satchel" ;
    $description = "Express Satchel" ;
    }

    Cheers
    Rod.

    ps. This will only improve performance by a few microseconds, so don't expect any observable difference. In isolation it isn't enough to worry about, but such optimisations repeated throughout any given code has a cumunilative effect that can be quite significant.

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

    Default Re: ozpost shipping module

    Quote Originally Posted by uniqueliving View Post
    Hi Rod

    Just wondering if you can help me. I have ozpost installed and i have set the error amount up but when a customer orders alot and it goes back to my error amount the customer can't use it. It wont let them past step 2 in the check out and when it does it brings up a error screen saying the webpage format is not supported do you know what this could be.

    Thanks
    I'll need to check/verify this somehow.

    If I don't get back to you in a day or 2 please send me a reminder :-)

    Cheers
    Rod

  9. #9
    Join Date
    Dec 2009
    Location
    Gold Coast, Australia
    Posts
    170
    Plugin Contributions
    0

    Default Re: ozpost shipping module

    Quote Originally Posted by RodG View Post
    I'll need to check/verify this somehow.

    If I don't get back to you in a day or 2 please send me a reminder :-)

    Cheers
    Rod
    Thanks for your help Rod Much appreciated.

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

    Default Re: ozpost shipping module

    Quote Originally Posted by uniqueliving View Post
    Thanks for your help Rod Much appreciated.
    What version of ozpost are you running? At a glance it looks like V1.0.x. The bug you have described was fixed in 1.0.4 or 1.0.6. The current version is 2.0.5

    Cheers
    Rod

 

 
Page 1 of 2 12 LastLast

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

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