Plugin Directory

Changeset 3089538


Ignore:
Timestamp:
05/20/2024 04:10:37 PM (23 months ago)
Author:
smallfishes
Message:

2.9.15

Location:
canada-post-shipping-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • canada-post-shipping-for-woocommerce/trunk/canada-post-shipping-for-woocommerce-canada-post.php

    r2457020 r3089538  
    150150        if ($destination['country'] == 'CA') {
    151151            if ($weight_total <= 0.030) {
    152                 $postage_amount = 1.07;
     152                $postage_amount = 1.15;
    153153            }
    154154            else if ($weight_total <= 0.050) {
    155                 $postage_amount = 1.30;
     155                $postage_amount = 1.40;
    156156            }
    157157            else if ($weight_total <= 0.100) {
    158                 $postage_amount = 1.94;
     158                $postage_amount = 2.09;
    159159            }
    160160            else if ($weight_total <= 0.200) {
    161                 $postage_amount = 3.19;
     161                $postage_amount = 3.43;
    162162            }
    163163            else if ($weight_total <= 0.300) {
    164                 $postage_amount = 4.44;
     164                $postage_amount = 4.78;
    165165            }
    166166            else if ($weight_total <= 0.400) {
    167                 $postage_amount = 5.09;
     167                $postage_amount = 5.48;
    168168            }
    169169                else if ($weight_total <= 0.500) {
    170                 $postage_amount = 5.47;
     170                $postage_amount = 5.89;
    171171            }
    172172        }
    173173        else if ($destination['country'] == 'US') {
    174174            if ($weight_total <= 0.030) {
    175                 $postage_amount = 1.30;
     175                $postage_amount = 1.40;
    176176            }
    177177            else if ($weight_total <= 0.050) {
    178                 $postage_amount = 1.94;
     178                $postage_amount = 2.09;
    179179            }
    180180            else if ($weight_total <= 0.100) {
    181                 $postage_amount = 3.19;
     181                $postage_amount = 3.43;
    182182            }
    183183            else if ($weight_total <= 0.200) {
    184                 $postage_amount = 5.57;
     184                $postage_amount = 5.599;
    185185            }
    186186            else if ($weight_total <= 0.500) {
    187                 $postage_amount = 11.14;
     187                $postage_amount = 11.99;
    188188            }
    189189        }
    190190        else {
    191191            if ($weight_total <= 0.030) {
    192                 $postage_amount = 2.71;
     192                $postage_amount = 2.92;
    193193            }
    194194            else if ($weight_total <= 0.050) {
    195                 $postage_amount = 3.88;
     195                $postage_amount = 4.17;
    196196            }
    197197            else if ($weight_total <= 0.100) {
    198                 $postage_amount = 6.39;
     198                $postage_amount = 6.88;
    199199            }
    200200            else if ($weight_total <= 0.200) {
    201                 $postage_amount = 11.14;
     201                $postage_amount = 11.99;
    202202            }
    203203            else if ($weight_total <= 0.500) {
    204                 $postage_amount = 22.28;
     204                $postage_amount = 23.97;
    205205            }
    206206        }
  • canada-post-shipping-for-woocommerce/trunk/canada-post-shipping-for-woocommerce.php

    r3021667 r3089538  
    33* Plugin Name: Canada Post Shipping For WooCommerce
    44* Description: Integrates with Canada Post allowing you to provide accurate shipping quotes for your customers.
    5 * Version: 2.9.14
     5* Version: 2.9.15
    66* Author: Small Fish Analytics Inc.
    77* Author URI: http://www.smallfishanalytics.com/support?source=plugin_summary
    88* WC requires at least: 3.0.0
    9 * WC tested up to: 8.4
     9* WC tested up to: 8.8
    1010*/
    1111
  • canada-post-shipping-for-woocommerce/trunk/readme.txt

    r3021667 r3089538  
    33Tags: shipping, canada post, canada post shipping, shipping rates, woocommerce
    44Requires at least: 3.0.1
    5 Tested up to: 6.4
     5Tested up to: 6.5
    66Stable tag: trunk
    77License: GPLv2 or later
     
    3535
    3636== Changelog ==
     37= 2.9.15 =
     38Declare support for WooComerce 8.8 and WordPress 6.5
     39Update costs on letter shipping to match Canada Post rates
     40
    3741= 2.9.14 =
    3842Declare support for WooComerce 8.4 and WordPress 6.4
Note: See TracChangeset for help on using the changeset viewer.