Plugin Directory

Changeset 3330676


Ignore:
Timestamp:
07/19/2025 04:06:57 PM (8 months ago)
Author:
wijnbergdevelopments
Message:

Tested WooCommerce 10.0.2

Location:
product-gallery-swiper-for-woocommerce
Files:
37 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • product-gallery-swiper-for-woocommerce/trunk/README.txt

    r3319094 r3330676  
    44Requires at least: 6.0
    55Tested up to: 6.8
    6 Stable tag: 1.5.4
     6Stable tag: 1.5.5
    77Requires PHP: 7.2
    88License: GPL-2.0+
     
    6464
    6565== Changelog ==
     66= 1.5.5 =
     67* Removed load_plugin_textdomain() because it has been discouraged since WordPress version 4.6.
     68* Tested WooCommerce 10.0.2
     69
    6670= 1.5.4 =
    6771* Added compatibility for XStore theme
  • product-gallery-swiper-for-woocommerce/trunk/includes/class-wdevs-gallery-swiper.php

    r3313906 r3330676  
    7676
    7777        $this->load_dependencies();
    78         $this->set_locale();
    7978        $this->define_admin_hooks();
    8079        $this->define_public_hooks();
     
    108107
    109108        /**
    110          * The class responsible for defining internationalization functionality
    111          * of the plugin.
    112          */
    113         require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wdevs-gallery-swiper-i18n.php';
    114 
    115         /**
    116109         * The class responsible for defining all actions that occur in the admin area.
    117110         */
     
    132125
    133126        $this->loader = new Wdevs_Gallery_Swiper_Loader();
    134 
    135     }
    136 
    137     /**
    138      * Define the locale for this plugin for internationalization.
    139      *
    140      * Uses the Wdevs_Gallery_Swiper_i18n class in order to set the domain and to register the hook
    141      * with WordPress.
    142      *
    143      * @since    1.0.0
    144      * @access   private
    145      */
    146     private function set_locale() {
    147 
    148         $plugin_i18n = new Wdevs_Gallery_Swiper_i18n();
    149 
    150         $this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' );
    151127
    152128    }
  • product-gallery-swiper-for-woocommerce/trunk/wdevs-gallery-swiper.php

    r3319093 r3330676  
    1717 * Plugin URI:           https://products.wijnberg.dev
    1818 * Description:          Enhances WooCommerce product images display on product listing sections, providing a responsive and touch-friendly swiper.
    19  * Version:              1.5.4
     19 * Version:              1.5.5
    2020 * Author:               Wijnberg Developments
    2121 * License:              GPL-2.0+
     
    2727 * Requires PHP:         7.2
    2828 * WC requires at least: 7.0.0
    29  * WC tested up to:      9.9.4
     29 * WC tested up to:      10.0.2
    3030 * Requires Plugins:     woocommerce
    3131 */
     
    4141 * Rename this for your plugin and update it as you release new versions.
    4242 */
    43 define( 'WDEVS_GALLERY_SWIPER_VERSION', '1.5.4' );
     43define( 'WDEVS_GALLERY_SWIPER_VERSION', '1.5.5' );
    4444
    4545/**
Note: See TracChangeset for help on using the changeset viewer.