Changeset 2800906
- Timestamp:
- 10/18/2022 10:01:21 PM (3 years ago)
- Location:
- shiptimize-for-woocommerce/trunk
- Files:
-
- 4 edited
-
constants.php (modified) (1 diff)
-
includes/class-woo-shiptimize.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
-
shiptimize.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shiptimize-for-woocommerce/trunk/constants.php
r2800481 r2800906 4 4 define( 'SHIPTIMIZE_API_URL', 'https://api.pakketmail.nl/v3' ); 5 5 define( 'SHIPTIMIZE_BRAND', 'Shiptimize' ); 6 define( 'SHIPTIMIZE_VERSION', '3.1.5 6' );6 define( 'SHIPTIMIZE_VERSION', '3.1.57' ); 7 7 define( 'SHIPTIMIZE_CREATE_ACCOUNT', 'https://www.shiptimize.me/quote/' ); 8 8 define( 'SHIPTIMIZE_CHECKOUT', 0); -
shiptimize-for-woocommerce/trunk/includes/class-woo-shiptimize.php
r2800481 r2800906 337 337 **/ 338 338 public function rates_filter ( $rates, $package ) { 339 339 340 340 // Check if hide not free enabled 341 341 if ( get_option('shiptimize_hide_not_free') ) { … … 343 343 foreach ( $rates as $id => $r) { 344 344 if ( $r->cost == 0 && $this->is_rate_valid( $r, $package ) ) { 345 array_push($free, $r);345 $free[$rid] = $r; 346 346 } 347 347 } … … 356 356 foreach ( $rates as $id => $r) { 357 357 if( $this->is_rate_valid($r, $package) ) { 358 array_push( $newrates,$r );358 $newrates[$id] = $r ; 359 359 } 360 360 } -
shiptimize-for-woocommerce/trunk/readme.txt
r2800481 r2800906 59 59 == Changelog == 60 60 61 = 3.1.57 - 2022-10-18 = 62 * fix - When selecting the shipping method the value of shipping was not added to total. 63 61 64 = 3.1.56 - 2022-10-18 = 62 65 * fix - If hide shipping methods was enabled and only rates that can't display because of class constraints match, then no rates would not display. -
shiptimize-for-woocommerce/trunk/shiptimize.php
r2800481 r2800906 3 3 * Plugin Name: Shiptimize for WooCommerce 4 4 * Description: Shiptimize for WooCommerce 5 * Version: 3.1.5 65 * Version: 3.1.57 6 6 * Author: Shiptimize 7 7 * Author URI: https://shiptimize.me
Note: See TracChangeset
for help on using the changeset viewer.