Plugin Directory

Changeset 2194098


Ignore:
Timestamp:
11/15/2019 10:41:26 PM (6 years ago)
Author:
SmartSend
Message:

Tagging version 8.0.19

Location:
smart-send-logistics
Files:
14 deleted
3 edited
27 copied

Legend:

Unmodified
Added
Removed
  • smart-send-logistics/tags/8.0.19/includes/class-ss-shipping-wc-order.php

    r2061608 r2194098  
    12391239                        $product_variation = $product;
    12401240                    }
    1241                     $product_weight = round(wc_get_weight($product_variation->get_weight(), 'kg'), 2);
    1242                     if ($product_weight) {
    1243                         $weight_total += ($item['qty'] * $product_weight);
     1241
     1242                    if ($product_variation) {//null|false if unable to load product
     1243                        $product_weight = round(wc_get_weight($product_variation->get_weight(), 'kg'), 2);
     1244                        if ($product_weight) {
     1245                            $weight_total += ($item['qty'] * $product_weight);
     1246                        }
    12441247                    }
    12451248                }
  • smart-send-logistics/tags/8.0.19/readme.txt

    r2142204 r2194098  
    88Tags: smartsend, smart send, shipping, shipping label, pickup, pick-up, pakkelabel, pakkelabels, pakkeboks, pakkeshop, hente selv, døgnboks, postnord, post nord, post danmark, gls, swipbox, bring, dao, dao365, dao 365, carrier, pacsoft, yourgls, mybring, postage, shipping method, your-gls, my-bring, pacosft-online, pacsoftonline, denmark, sweeden, posten, norway, post
    99Requires at least: 3.0.1
    10 Tested up to: 5.2
    11 Stable tag: 8.0.18
     10Tested up to: 5.3
     11Stable tag: 8.0.19
    1212License: GNU General Public License v3.0
    1313License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1414WC requires at least: 3.0.0
    15 WC tested up to: 3.7
     15WC tested up to: 3.8
    1616Requires PHP: 5.6.0
    1717
     
    201201== Changelog ==
    202202
     203= 8.0.19 =
     204* Bugfix: Order page failed when purchased products had been deleted
     205
    203206= 8.0.18 =
    204207* Add extra info about cart content to debug log
  • smart-send-logistics/tags/8.0.19/smart-send-logistics.php

    r2142204 r2194098  
    77 * Author URI: https://www.smartsend.io
    88 * Text Domain: smart-send-logistics
    9  * Version: 8.0.18
     9 * Version: 8.0.19
    1010 * WC requires at least: 2.6.0
    11  * WC tested up to: 3.7
     11 * WC tested up to: 3.8
    1212 *
    1313 * This program is free software: you can redistribute it and/or modify
     
    3535    {
    3636
    37         private $version = "8.0.18";
     37        private $version = "8.0.19";
    3838
    3939        /**
  • smart-send-logistics/trunk/includes/class-ss-shipping-wc-order.php

    r2061608 r2194098  
    12391239                        $product_variation = $product;
    12401240                    }
    1241                     $product_weight = round(wc_get_weight($product_variation->get_weight(), 'kg'), 2);
    1242                     if ($product_weight) {
    1243                         $weight_total += ($item['qty'] * $product_weight);
     1241
     1242                    if ($product_variation) {//null|false if unable to load product
     1243                        $product_weight = round(wc_get_weight($product_variation->get_weight(), 'kg'), 2);
     1244                        if ($product_weight) {
     1245                            $weight_total += ($item['qty'] * $product_weight);
     1246                        }
    12441247                    }
    12451248                }
  • smart-send-logistics/trunk/readme.txt

    r2142204 r2194098  
    88Tags: smartsend, smart send, shipping, shipping label, pickup, pick-up, pakkelabel, pakkelabels, pakkeboks, pakkeshop, hente selv, døgnboks, postnord, post nord, post danmark, gls, swipbox, bring, dao, dao365, dao 365, carrier, pacsoft, yourgls, mybring, postage, shipping method, your-gls, my-bring, pacosft-online, pacsoftonline, denmark, sweeden, posten, norway, post
    99Requires at least: 3.0.1
    10 Tested up to: 5.2
    11 Stable tag: 8.0.18
     10Tested up to: 5.3
     11Stable tag: 8.0.19
    1212License: GNU General Public License v3.0
    1313License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1414WC requires at least: 3.0.0
    15 WC tested up to: 3.7
     15WC tested up to: 3.8
    1616Requires PHP: 5.6.0
    1717
     
    201201== Changelog ==
    202202
     203= 8.0.19 =
     204* Bugfix: Order page failed when purchased products had been deleted
     205
    203206= 8.0.18 =
    204207* Add extra info about cart content to debug log
  • smart-send-logistics/trunk/smart-send-logistics.php

    r2142204 r2194098  
    77 * Author URI: https://www.smartsend.io
    88 * Text Domain: smart-send-logistics
    9  * Version: 8.0.18
     9 * Version: 8.0.19
    1010 * WC requires at least: 2.6.0
    11  * WC tested up to: 3.7
     11 * WC tested up to: 3.8
    1212 *
    1313 * This program is free software: you can redistribute it and/or modify
     
    3535    {
    3636
    37         private $version = "8.0.18";
     37        private $version = "8.0.19";
    3838
    3939        /**
Note: See TracChangeset for help on using the changeset viewer.