Changeset 3305044
- Timestamp:
- 06/02/2025 01:08:40 PM (10 months ago)
- Location:
- woot-ro/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
public/class-woot-public.php (modified) (1 diff)
-
woot.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woot-ro/trunk/README.txt
r3153925 r3305044 4 4 Requires at least: 4.0 5 5 Tested up to: 6.6.2 6 Stable tag: 2.0. 56 Stable tag: 2.0.6 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 74 74 * Fixed couriers filters on locations shipping method 75 75 76 = 2.0.6 = 77 * Fix warning when checking for existing shipping method 78 76 79 == Upgrade Notice == 77 80 … … 97 100 * Improved map 98 101 * Fixed couriers filters on locations shipping method 102 103 = 2.0.6 = 104 * Fix warning when checking for existing shipping method -
woot-ro/trunk/public/class-woot-public.php
r3153925 r3305044 132 132 $shipping_method = explode(':', $shipping_methods[0]); 133 133 134 if ( !empty($shipping_method)) {134 if (isset($shipping_method[0]) && isset($shipping_method[1])) { 135 135 $settings = get_option('woocommerce_' . $shipping_method[0] . '_' . $shipping_method[1] . '_settings'); 136 136 -
woot-ro/trunk/woot.php
r3153925 r3305044 17 17 * Plugin URI: https://woot.ro 18 18 * Description: Integrates all popular couriers in Romania, providing a one-stop solution for all your delivery needs 19 * Version: 2.0. 519 * Version: 2.0.6 20 20 * Author: Woot.ro 21 21 * Author URI: https://woot.ro … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define('WOOT_VERSION', '2.0. 5');38 define('WOOT_VERSION', '2.0.6'); 39 39 40 40 /**
Note: See TracChangeset
for help on using the changeset viewer.