Plugin Directory

Changeset 2808620


Ignore:
Timestamp:
11/01/2022 10:52:11 AM (3 years ago)
Author:
shiptimizeplugins
Message:

item weight is individual item weight not qty*item_weight

Location:
shiptimize-for-woocommerce/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • shiptimize-for-woocommerce/trunk/constants.php

    r2805627 r2808620  
    44define( 'SHIPTIMIZE_API_URL', 'https://api.pakketmail.nl/v3' );
    55define( 'SHIPTIMIZE_BRAND', 'Shiptimize' );
    6 define( 'SHIPTIMIZE_VERSION', '3.1.58' );
     6define( 'SHIPTIMIZE_VERSION', '3.1.59' );
    77define( 'SHIPTIMIZE_CREATE_ACCOUNT', 'https://www.shiptimize.me/quote/' );
    88define( 'SHIPTIMIZE_CHECKOUT', 0);
  • shiptimize-for-woocommerce/trunk/includes/class-woo-shiptimize-order.php

    r2781393 r2808620  
    669669
    670670            if( $product->has_weight() ) {
    671               $item_weight = wc_get_weight(floatval($qty * $product->get_weight()),'g');
     671              $item_weight = wc_get_weight(floatval($product->get_weight()),'g');
    672672              $weight += $qty * $item_weight;
    673673            }
  • shiptimize-for-woocommerce/trunk/readme.txt

    r2805627 r2808620  
    5959== Changelog ==
    6060
     61= 3.1.59 - 2022-11-01 =
     62* Fix - when sending item weight to the api, send the individual item weight not qty * item_weight
     63
    6164= 3.1.58 - 2022-10-26 =
    6265* Enhancement - When hiding all shipping methods not free, make sure only activate feature if the at least one free shipping is not "local pickup".
  • shiptimize-for-woocommerce/trunk/shiptimize.php

    r2805627 r2808620  
    33 * Plugin Name: Shiptimize for WooCommerce
    44 * Description: Shiptimize for WooCommerce 
    5  * Version: 3.1.58
     5 * Version: 3.1.59
    66 * Author: Shiptimize
    77 * Author URI: https://shiptimize.me
Note: See TracChangeset for help on using the changeset viewer.