Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 32
  1. #11
    Join Date
    May 2006
    Location
    Queensland, Australia
    Posts
    248
    Plugin Contributions
    0

    Default Re: New Australia Post Shipping Module?

    Okay, got it so that if the weight is over 20kgs, it will used the fixed prices, however don't know how to get it to use the second value instead of the first...

    Code:
    if ($sweight > 20000 & ($dest_country == "AU")) {
        $methods[] = array( 'id' => "ERROR",  'title' => 'Using Fixed Rate (Australia)' ,'cost' => MODULE_SHIPPING_AUSTPOST_COST_ON_ERROR ) ;
        $this->quotes['methods'] = $methods;   // set it
    return $this->quotes; }  // exceeds AustPost maximum weight
    
    if ($sweight > 20000 & ($dest_country <> "AU")) {
        $methods[] = array( 'id' => "ERROR",  'title' => 'Using Fixed Rate (International)' ,'cost' => MODULE_SHIPPING_AUSTPOST_COST_ON_ERROR ) ;
        $this->quotes['methods'] = $methods;   // set it
    return $this->quotes; }  // exceeds AustPost maximum weight
    Code:
    $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('<hr>Fixed Cost', 'MODULE_SHIPPING_AUSTPOST_COST_ON_ERROR', '25.00,99.99', 'These rates will be used if there is an error in calucating the cost. The First value is for Australian wide. The second value for Overseas delivery.', '6', '27', now())");

  2. #12
    Join Date
    Sep 2010
    Posts
    4
    Plugin Contributions
    0

    red flag Re: New Australia Post Shipping Module?

    I installed the updated (australia_post_shipping_module_1-1) and it is working fine except for one issue.

    The images on the Admin/Order page adn Actual Order No page does not show the images/icons and look bad when printing Invoices!

    Please view my desktop snaphot of the problem.

    http://img299.imageshack.us/img299/5844/orderserror.jpg
    http://img837.imageshack.us/img837/2...rpageerror.jpg

    Hope someone can help me!

    Cheers,

  3. #13
    Join Date
    May 2006
    Location
    Queensland, Australia
    Posts
    248
    Plugin Contributions
    0

    Default Re: New Australia Post Shipping Module?

    Quote Originally Posted by aus_sam View Post
    I installed the updated (australia_post_shipping_module_1-1) and it is working fine except for one issue.

    The images on the Admin/Order page adn Actual Order No page does not show the images/icons and look bad when printing Invoices!

    Please view my desktop snaphot of the problem.

    http://img299.imageshack.us/img299/5844/orderserror.jpg
    http://img837.imageshack.us/img837/2...rpageerror.jpg

    Hope someone can help me!

    Cheers,
    Do you know what the link is for the broken images ?

  4. #14
    Join Date
    Sep 2010
    Posts
    4
    Plugin Contributions
    0

    Default Re: New Australia Post Shipping Module?

    Hi Delights,

    It seems to be forcing the icons to come from the ADMIN:
    admin/includes/templates/template_default/images/icons/....

    I created the above folders in the admin section to get the image to show, might not be safe doing so but the problem is the estimated days that is showing incorrectly with just a Big number and >> after it, can't seem to get rid of them?

    Here is what my Source Code says on the admin order info page:

    <tr>
    <td align="right" class="ot-shipping-Text">Australia Post (<img src="includes/templates/template_default/images/icons/austpost_rpp.jpg" alt="Regular Parcel Post" title=" Regular Parcel Post " width="111" height="35" /><span style="font-size: 20px ; vertical-align: top ; font-weight: bold ; " > 2<</td>
    <td align="right" class="ot-shipping-Amount">$7.70</td>
    </tr>

    Hope you can help.

    Cheers,

  5. #15
    Join Date
    Sep 2010
    Posts
    4
    Plugin Contributions
    0

    Default Re: New Australia Post Shipping Module?

    And here is the (Icons & number of days) code snippet from the .PHP code found in the (austpost.php):

    if (zen_get_shipping_enabled($this->code)) {
    $this->enabled = ((MODULE_SHIPPING_AUSTPOST_STATUS == 'True') ? true : false);
    }

    $this->code = 'austpost';
    $this->title = MODULE_SHIPPING_AUSTPOST_TEXT_TITLE;
    $this->description = MODULE_SHIPPING_AUSTPOST_TEXT_DESCRIPTION;
    $this->sort_order = MODULE_SHIPPING_AUSTPOST_SORT_ORDER;
    $this->icon = $template->get_template_dir('austpost.jpg', '', '','images/icons'). '/' . 'austpost.jpg';
    $this->icon_rpp = $template->get_template_dir('austpost_rpp.jpg', '' , '','images/icons'). '/' . 'austpost_rpp.jpg';
    $this->icon_air = $template->get_template_dir('austpost_air.jpg', '' , '','images/icons'). '/' . 'austpost_air.jpg';
    $this->icon_sea = $template->get_template_dir('austpost_sea.jpg', '' , '','images/icons'). '/' . 'austpost_sea.jpg';
    $this->icon_exp = $template->get_template_dir('austpost_exp.jpg', '', '','images/icons'). '/' . 'austpost_exp.jpg';
    $this->icon_expi = $template->get_template_dir('austpost_epi.jpg', '', '','images/icons'). '/' . 'austpost_epi.jpg';
    $this->icon_reg = $template->get_template_dir('austpost_regd.jpg', '', '','images/icons'). '/' . 'austpost_regd.jpg';
    $this->icon_del = $template->get_template_dir('austpost_del.jpg', '', '','images/icons'). '/' . 'austpost_del.jpg';


    $bignumber="<span style=\"font-size: 20px ; vertical-align: top ; font-weight: bold ; \" > ";

    Cheers,

  6. #16
    Join Date
    Sep 2010
    Posts
    4
    Plugin Contributions
    0

    Default Re: New Australia Post Shipping Module?

    I am also noticing that the Post Calculations are incorrect!

    For a product that weights 0.125 kgs (125 grams) is costing $7.70 to the same postcode as the shipping postcode!

    I have set the (Parcel Weight format) in [kgs] in the shipping module.
    I type (0.123) in the Product Weight: in the product info page.

    I have tried several dimension and it's all the same!

    If I change the (Parcel Weight format) to [gms], it changes the shipping cost to $4.55 which is correct, but now the bigger items which are 3 kilos have the same shipping cost as the 125gm item!!
    even though I type (3) for the Product Weight: in the product info page which should reflect 3 kilos.

    What am I missing?

  7. #17
    Join Date
    Jan 2009
    Location
    Victoria Australia
    Posts
    100
    Plugin Contributions
    0

    Default Re: New Australia Post Shipping Module?

    I've installed reinstalled and can't get this mod to give any more than just registered parcel and express parcel quotes.
    I have un-commented the lines for prepaid satchels etc, and can't even get those to show.
    I can't pay monthly for ozpost. Already pay for server, ssl ,domian name, and barely make more than the yearly expenses. I have other things going on in my life, and plan to spend more time on developing my site in the future, but until then I see no point in tossing away what I already have.

    I'm pretty good with graphics, so if anyone wants to help me out with this, as it seems unsupported, I would gladly help put some graphics together for you. I've come up with some great looking graphics for the ozpost mod that would be great for this mod, and I would be more than happy to share.

    Thanks David

  8. #18
    Join Date
    May 2006
    Location
    Queensland, Australia
    Posts
    248
    Plugin Contributions
    0

    Default Re: New Australia Post Shipping Module?

    Quote Originally Posted by aus_sam View Post
    I am also noticing that the Post Calculations are incorrect!

    For a product that weights 0.125 kgs (125 grams) is costing $7.70 to the same postcode as the shipping postcode!

    I have set the (Parcel Weight format) in [kgs] in the shipping module.
    I type (0.123) in the Product Weight: in the product info page.

    I have tried several dimension and it's all the same!

    If I change the (Parcel Weight format) to [gms], it changes the shipping cost to $4.55 which is correct, but now the bigger items which are 3 kilos have the same shipping cost as the 125gm item!!
    even though I type (3) for the Product Weight: in the product info page which should reflect 3 kilos.

    What am I missing?
    Try changing the following options in Admin - Configuration - Shipping nd Packing

    Enter the Maximum Package Weight you will ship 50
    Package Tare Small to Medium - added percentage:weight 0:0.200
    Larger packages - added packaging percentage:weight 0.0.400

  9. #19
    Join Date
    May 2006
    Location
    Queensland, Australia
    Posts
    248
    Plugin Contributions
    0

    Default Re: New Australia Post Shipping Module?

    Quote Originally Posted by australican View Post
    I've installed reinstalled and can't get this mod to give any more than just registered parcel and express parcel quotes.
    I have un-commented the lines for prepaid satchels etc, and can't even get those to show.
    I can't pay monthly for ozpost. Already pay for server, ssl ,domian name, and barely make more than the yearly expenses. I have other things going on in my life, and plan to spend more time on developing my site in the future, but until then I see no point in tossing away what I already have.

    I'm pretty good with graphics, so if anyone wants to help me out with this, as it seems unsupported, I would gladly help put some graphics together for you. I've come up with some great looking graphics for the ozpost mod that would be great for this mod, and I would be more than happy to share.

    Thanks David
    Link to your site ?

  10. #20
    Join Date
    Jan 2009
    Location
    Victoria Australia
    Posts
    100
    Plugin Contributions
    0

    Default Re: New Australia Post Shipping Module?

    Oops, here is my site,

    http://countrytothecore.net
    Thanks, David

 

 
Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Australia Post Shipping Module 2.0
    By etrader in forum Addon Shipping Modules
    Replies: 146
    Last Post: 16 Jun 2026, 07:40 AM
  2. Australia Post Shipping Module
    By ceej23 in forum All Other Contributions/Addons
    Replies: 11
    Last Post: 17 Apr 2019, 10:03 AM
  3. Bug in Australia Post Shipping Module
    By Peter Homann in forum Addon Shipping Modules
    Replies: 5
    Last Post: 13 Feb 2011, 10:06 AM
  4. Replies: 2
    Last Post: 23 Aug 2009, 11:25 AM
  5. Australia Post Shipping Module & International Post
    By annav in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 29 Nov 2008, 11:42 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