Changeset 3409324
- Timestamp:
- 12/03/2025 10:45:31 AM (4 months ago)
- Location:
- fish-and-ships/trunk
- Files:
-
- 2 deleted
- 4 edited
-
3rd-party/fns-wapf-new.php (modified) (1 diff)
-
assets/js/front-fns.js (deleted)
-
assets/js/front-fns.min.js (deleted)
-
fish-and-ships.php (modified) (3 diffs)
-
includes/shipping-class.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fish-and-ships/trunk/3rd-party/fns-wapf-new.php
r3374026 r3409324 613 613 * deep_seek_value() 614 614 * 615 * Beta for Slawomir: in some cases, the sought value is included in the "values" array616 * instead of "raw". For now, we will check in both.615 * In some cases, the sought value is included in the "values" array 616 * instead of "raw". We will check in both. 617 617 * 618 618 * Example input: -
fish-and-ships/trunk/fish-and-ships.php
r3378567 r3409324 4 4 * Plugin URI: https://www.wp-centrics.com/ 5 5 * Description: The most flexible and all-in-one table rate shipping plugin. Previously named "Fish and Ships" 6 * Version: 2.1. 46 * Version: 2.1.5 7 7 * Author: wpcentrics 8 8 * Author URI: https://www.wp-centrics.com … … 10 10 * Domain Path: /languages 11 11 * Requires at least: 4.7 12 * Tested up to: 6. 8.312 * Tested up to: 6.9 13 13 * WC requires at least: 3.0 14 * WC tested up to: 10. 2.214 * WC tested up to: 10.3.6 15 15 * Requires PHP: 7.0 16 16 * Requires Plugins: woocommerce … … 43 43 } else { 44 44 45 define ('WC_FNS_VERSION', '2.1. 4' );45 define ('WC_FNS_VERSION', '2.1.5' ); 46 46 define ('WC_FNS_PATH', dirname(__FILE__) . '/' ); 47 47 define ('WC_FNS_URL', plugin_dir_url( __FILE__ ) ); -
fish-and-ships/trunk/includes/shipping-class.php
r3320309 r3409324 337 337 * 338 338 * @since 1.0.0 339 * @version 2.1. 1339 * @version 2.1.5 340 340 * 341 341 * @param array $package Package of items from cart. … … 398 398 $n_shippable += $Fish_n_Ships->get_quantity($product); 399 399 400 $this->debug_log('- #' . $Fish_n_Ships->get_prod_or_variation_id($product) . ' ' . $Fish_n_Ships->get_name($product) . ' (' . $Fish_n_Ships->get_quantity($product) . ')', 0);400 $this->debug_log('- #' . $Fish_n_Ships->get_prod_or_variation_id($product) . ' ' . $Fish_n_Ships->get_name($product) . ', SKU: [' . $product['data']->get_sku() . '] (' . $Fish_n_Ships->get_quantity($product) . ')', 0); 401 401 402 402 } else { 403 403 $n_non_shippable += $Fish_n_Ships->get_quantity($product); 404 404 405 $this->debug_log('- #' . $Fish_n_Ships->get_prod_or_variation_id($product) . ' ' . $Fish_n_Ships->get_name($product) . ' ( non-shippable )', 0);405 $this->debug_log('- #' . $Fish_n_Ships->get_prod_or_variation_id($product) . ' ' . $Fish_n_Ships->get_name($product) . ', SKU: [' . $product['data']->get_sku() . '] ( non-shippable )', 0); 406 406 } 407 407 } -
fish-and-ships/trunk/readme.txt
r3378569 r3409324 5 5 Tags: shipping rates, table rate shipping, table rate, shipping rules 6 6 Requires at least: 4.7 7 Tested up to: 6. 8.37 Tested up to: 6.9 8 8 WC requires at least: 3.0 9 WC tested up to: 10. 2.210 Stable tag: 2.1. 49 WC tested up to: 10.3.6 10 Stable tag: 2.1.5 11 11 Requires PHP: 7.0 12 12 Requires Plugins: woocommerce … … 235 235 == Changelog == 236 236 237 = 2.1.5 - 03/12/2025 = 238 * Checked for WP 6.9 239 * Checked for WC 10.3.6 240 * Better log info: added SKU in product list for logging/debugging 241 237 242 = 2.1.4 - 15/10/2025 = 238 243 * Video tutorials updated
Note: See TracChangeset
for help on using the changeset viewer.