Plugin Directory

Changeset 3409324


Ignore:
Timestamp:
12/03/2025 10:45:31 AM (4 months ago)
Author:
wpcentrics
Message:

Uploading v2.1.5

Location:
fish-and-ships/trunk
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • fish-and-ships/trunk/3rd-party/fns-wapf-new.php

    r3374026 r3409324  
    613613         *  deep_seek_value()
    614614         *
    615          *  Beta for Slawomir: in some cases, the sought value is included in the "values" array
    616          *  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.
    617617         *
    618618         *  Example input:
  • fish-and-ships/trunk/fish-and-ships.php

    r3378567 r3409324  
    44 * Plugin URI: https://www.wp-centrics.com/
    55 * Description: The most flexible and all-in-one table rate shipping plugin. Previously named "Fish and Ships"
    6  * Version: 2.1.4
     6 * Version: 2.1.5
    77 * Author: wpcentrics
    88 * Author URI: https://www.wp-centrics.com
     
    1010 * Domain Path: /languages
    1111 * Requires at least: 4.7
    12  * Tested up to: 6.8.3
     12 * Tested up to: 6.9
    1313 * WC requires at least: 3.0
    14  * WC tested up to: 10.2.2
     14 * WC tested up to: 10.3.6
    1515 * Requires PHP: 7.0
    1616 * Requires Plugins: woocommerce
     
    4343} else {
    4444
    45     define ('WC_FNS_VERSION', '2.1.4' );
     45    define ('WC_FNS_VERSION', '2.1.5' );
    4646    define ('WC_FNS_PATH', dirname(__FILE__) . '/' );
    4747    define ('WC_FNS_URL', plugin_dir_url( __FILE__ ) );
  • fish-and-ships/trunk/includes/shipping-class.php

    r3320309 r3409324  
    337337     *
    338338     * @since 1.0.0
    339      * @version 2.1.1
     339     * @version 2.1.5
    340340     *
    341341     * @param array $package Package of items from cart.
     
    398398                $n_shippable += $Fish_n_Ships->get_quantity($product);
    399399           
    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);
    401401           
    402402            } else {
    403403                $n_non_shippable += $Fish_n_Ships->get_quantity($product);
    404404
    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);
    406406            }
    407407        }
  • fish-and-ships/trunk/readme.txt

    r3378569 r3409324  
    55Tags: shipping rates, table rate shipping, table rate, shipping rules
    66Requires at least: 4.7
    7 Tested up to: 6.8.3
     7Tested up to: 6.9
    88WC requires at least: 3.0
    9 WC tested up to: 10.2.2
    10 Stable tag: 2.1.4
     9WC tested up to: 10.3.6
     10Stable tag: 2.1.5
    1111Requires PHP: 7.0
    1212Requires Plugins: woocommerce
     
    235235== Changelog ==
    236236
     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
    237242= 2.1.4 - 15/10/2025 =
    238243* Video tutorials updated
Note: See TracChangeset for help on using the changeset viewer.