Plugin Directory

Changeset 2142204


Ignore:
Timestamp:
08/19/2019 09:34:53 PM (7 years ago)
Author:
SmartSend
Message:

Taggin version 8.0.18

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

Legend:

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

    r2066348 r2142204  
    295295                    'type'    => 'select',
    296296                    'class'   => 'wc-enhanced-select',
    297                     'options' => array_merge(array('0' => __("Don't change order status", 'smart-send-logistics')),
     297                    'options' => array_merge(array('0' => __("Do not change order status", 'smart-send-logistics')),
    298298                        wc_get_order_statuses()),
    299299                ),
     
    305305                    'description' => __('Selecting a shipping method will make it possible to make shipping labels for order places with WooCommerces native Free Shipping method.',
    306306                        'smart-send-logistics'),
    307                     'desc_tip'    => true,
    308307                    'options'     => $this->shipping_method,
    309308                ),
     
    340339                    'title'       => __('Select Default', 'smart-send-logistics'),
    341340                    'label'       => __('Enable Select Default', 'smart-send-logistics'),
    342                     'description' => __('Select the first returned pick-up point.'),
     341                    'description' => __('This will automatically select the closest pick-up point and let the customer change to a different pick-up point. This means that the customer will not be forced to select a pick-up point before completing the order.'),
    343342                    'default'     => 'no',
    344343                    'type'        => 'checkbox',
     
    944943            // write id of shipping method to log
    945944            SS_SHIPPING_WC()->log_msg('Handling shipping rate <' . $rate['id'] . '> with title: ' . $rate['label']);
     945            SS_SHIPPING_WC()->log_msg('Rate details (json decode for details): ' . json_encode($rate));
    946946
    947947            // Set tax status based on selection otherwise always taxed
     
    954954                $this->add_rate($rate);
    955955                // write to log, that shipping rate is added
    956                 SS_SHIPPING_WC()->log_msg('Free shipping rate added (json decode for details): ' . json_encode($rate));
     956                SS_SHIPPING_WC()->log_msg('Free shipping rate added');
    957957
    958958            } else {
  • smart-send-logistics/tags/8.0.18/readme.txt

    r2076724 r2142204  
    99Requires at least: 3.0.1
    1010Tested up to: 5.2
    11 Stable tag: 8.0.17
     11Stable tag: 8.0.18
    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.6
     15WC tested up to: 3.7
    1616Requires PHP: 5.6.0
    1717
     
    201201== Changelog ==
    202202
     203= 8.0.18 =
     204* Add extra info about cart content to debug log
     205
    203206= 8.0.17 =
    204207* Add hidden product meta field **_ss_country_of_origin** used for custom declarations
  • smart-send-logistics/tags/8.0.18/smart-send-logistics.php

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

    r2066348 r2142204  
    295295                    'type'    => 'select',
    296296                    'class'   => 'wc-enhanced-select',
    297                     'options' => array_merge(array('0' => __("Don't change order status", 'smart-send-logistics')),
     297                    'options' => array_merge(array('0' => __("Do not change order status", 'smart-send-logistics')),
    298298                        wc_get_order_statuses()),
    299299                ),
     
    305305                    'description' => __('Selecting a shipping method will make it possible to make shipping labels for order places with WooCommerces native Free Shipping method.',
    306306                        'smart-send-logistics'),
    307                     'desc_tip'    => true,
    308307                    'options'     => $this->shipping_method,
    309308                ),
     
    340339                    'title'       => __('Select Default', 'smart-send-logistics'),
    341340                    'label'       => __('Enable Select Default', 'smart-send-logistics'),
    342                     'description' => __('Select the first returned pick-up point.'),
     341                    'description' => __('This will automatically select the closest pick-up point and let the customer change to a different pick-up point. This means that the customer will not be forced to select a pick-up point before completing the order.'),
    343342                    'default'     => 'no',
    344343                    'type'        => 'checkbox',
     
    944943            // write id of shipping method to log
    945944            SS_SHIPPING_WC()->log_msg('Handling shipping rate <' . $rate['id'] . '> with title: ' . $rate['label']);
     945            SS_SHIPPING_WC()->log_msg('Rate details (json decode for details): ' . json_encode($rate));
    946946
    947947            // Set tax status based on selection otherwise always taxed
     
    954954                $this->add_rate($rate);
    955955                // write to log, that shipping rate is added
    956                 SS_SHIPPING_WC()->log_msg('Free shipping rate added (json decode for details): ' . json_encode($rate));
     956                SS_SHIPPING_WC()->log_msg('Free shipping rate added');
    957957
    958958            } else {
  • smart-send-logistics/trunk/readme.txt

    r2076724 r2142204  
    99Requires at least: 3.0.1
    1010Tested up to: 5.2
    11 Stable tag: 8.0.17
     11Stable tag: 8.0.18
    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.6
     15WC tested up to: 3.7
    1616Requires PHP: 5.6.0
    1717
     
    201201== Changelog ==
    202202
     203= 8.0.18 =
     204* Add extra info about cart content to debug log
     205
    203206= 8.0.17 =
    204207* Add hidden product meta field **_ss_country_of_origin** used for custom declarations
  • smart-send-logistics/trunk/smart-send-logistics.php

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