Plugin Directory

Changeset 3419659


Ignore:
Timestamp:
12/15/2025 03:35:04 AM (3 months ago)
Author:
wcboost
Message:

upload code of version 1.1.3

Location:
wcboost-variation-swatches/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wcboost-variation-swatches/trunk/readme.txt

    r3416062 r3419659  
    33Tags: woocommerce, product attribute, product color, variation swatches, variable products
    44Tested up to: 6.9
    5 Stable tag: 1.1.2
     5Stable tag: 1.1.3
    66Requires PHP: 7.0
    77Requires at least: 4.5
    88WC requires at least: 3.0.0
    9 WC tested up to: 9.9
     9WC tested up to: 10.4
    1010License: GPLv3 or later
    1111License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    190190
    191191== Changelog ==
     192
     193= 1.1.3 =
     194* Ensured compatibility with WordPress 6.9
     195* Ensured compatibility with WooCommerce 10.4
    192196
    193197= 1.1.2 =
  • wcboost-variation-swatches/trunk/uninstall.php

    r3176381 r3419659  
    22/**
    33 * Uninstall plugin
     4 *
     5 * @package WCBoost\VariationSwatches
    46 */
    57
    6 // If uninstall not called from WordPress then exit
     8// If uninstall not called from WordPress then exit.
    79defined( 'WP_UNINSTALL_PLUGIN' ) || exit;
    810
  • wcboost-variation-swatches/trunk/wcboost-variation-swatches.php

    r3322630 r3419659  
    55 * Plugin URI: https://wcboost.com/plugin/woocommerce-variation-swatches/
    66 * Author: WCBoost
    7  * Version: 1.1.2
     7 * Version: 1.1.3
    88 * Author URI: https://wcboost.com/
    99 *
     
    1313 * Requires PHP: 7.0
    1414 * Requires at least: 4.5
    15  * Tested up to: 6.8
     15 * Tested up to: 6.9
    1616 * WC requires at least: 3.0.0
    17  * WC tested up to: 9.9
     17 * WC tested up to: 10.4
    1818 * License: GPLv3 or later
    1919 *
     
    2525}
    2626
    27 define( 'WCBOOST_VARIATION_SWATCHES_VERSION', '1.1.2' );
     27define( 'WCBOOST_VARIATION_SWATCHES_VERSION', '1.1.3' );
    2828define( 'WCBOOST_VARIATION_SWATCHES_FREE', plugin_basename( __FILE__ ) );
    2929
     
    3737
    3838// Declare compatibility with WooCommerce features.
    39 add_action( 'before_woocommerce_init', function() {
     39add_action( 'before_woocommerce_init', function () {
    4040    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
    4141        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
Note: See TracChangeset for help on using the changeset viewer.