Plugin Directory

Changeset 3449291


Ignore:
Timestamp:
01/29/2026 06:45:42 AM (3 weeks ago)
Author:
wpswings
Message:

released version 1.9.2

Location:
subscriptions-for-woocommerce
Files:
206 added
5 edited

Legend:

Unmodified
Added
Removed
  • subscriptions-for-woocommerce/trunk/README.txt

    r3448364 r3449291  
    77WC requires at least: 6.5.0
    88WC tested up to: 10.4.3
    9 Stable tag: 1.9.1
     9Stable tag: 1.9.2
    1010Requires PHP: 7.4
    1111License: GNU General Public License v3.0
     
    309309== Changelog ==
    310310
     311= 1.9.2 - Released on 29 January 2026 =
     312* Fix: Critical error resolved by fixing the number of arguments passed to add_filter.
     313
    311314= 1.9.1 - Released on 28 January 2026 =
    312315* New: Compatibility with [**PDF Generator For WP Pro**](https://wpswings.com/product/pdf-generator-for-wp-pro/) by Wpswings
     
    436439* Fix : Issue with Subscription status translation
    437440* Fix : Place order button label text issue
    438 
    439 
    440441
    441442
     
    676677== Upgrade Notice ==
    677678
    678 = 1.9.1 - Released on 28 January 2026 =
    679 * New: Compatibility with [**PDF Generator For WP Pro**](https://wpswings.com/product/pdf-generator-for-wp-pro/) by Wpswings
    680 * New: Subscription Relation column in WooCommerce order section
     679= 1.9.2 - Released on 29 January 2026 =
     680* Fix: Critical error resolved by fixing the number of arguments passed to add_filter.
  • subscriptions-for-woocommerce/trunk/includes/class-subscriptions-for-woocommerce.php

    r3448364 r3449291  
    8181        } else {
    8282
    83             $this->version = '1.9.1';
     83            $this->version = '1.9.2';
    8484        }
    8585
     
    264264            $this->loader->add_filter( 'manage_edit-shop_order_columns', $sfw_plugin_admin , 'wps_sfw_add_contains_subscription_column' );
    265265            $this->loader->add_filter( 'woocommerce_shop_order_list_table_columns', $sfw_plugin_admin, 'wps_sfw_add_contains_subscription_column' );
    266             $this->loader->add_action( 'manage_shop_order_posts_custom_column', $sfw_plugin_admin, 'wps_sfw_add_contains_subscription_column_content', 10, 1 );
     266            $this->loader->add_action( 'manage_shop_order_posts_custom_column', $sfw_plugin_admin, 'wps_sfw_add_contains_subscription_column_content', 10, 2 );
    267267            $this->loader->add_action( 'woocommerce_shop_order_list_table_custom_column', $sfw_plugin_admin, 'wps_sfw_add_contains_subscription_column_content', 10, 2 );
    268268        }
  • subscriptions-for-woocommerce/trunk/languages/subscriptions-for-woocommerce-en_US.po

    r3448364 r3449291  
    22msgstr ""
    33"Project-Id-Version: \n"
    4 "POT-Creation-Date: 2026-01-27 16:52+0530\n"
     4"POT-Creation-Date: 2026-01-29 10:52+0530\n"
    55"PO-Revision-Date: \n"
    66"Last-Translator: \n"
  • subscriptions-for-woocommerce/trunk/languages/subscriptions-for-woocommerce.pot

    r3448364 r3449291  
    22msgid ""
    33msgstr ""
    4 "Project-Id-Version: Subscriptions For WooCommerce 1.9.1\n"
    5 "POT-Creation-Date: 2026-01-27 16:52+0530\n"
     4"Project-Id-Version: Subscriptions For WooCommerce 1.9.2\n"
     5"POT-Creation-Date: 2026-01-29 10:52+0530\n"
    66"PO-Revision-Date: 2023-10-03 13:22+0530\n"
    77"Last-Translator: \n"
  • subscriptions-for-woocommerce/trunk/subscriptions-for-woocommerce.php

    r3448364 r3449291  
    1616 * Plugin URI:        https://wordpress.org/plugins/subscriptions-for-woocommerce/
    1717 * Description:       <code><strong>Subscriptions for WooCommerce</strong></code> allow collecting repeated payments through subscriptions orders on the eCommerce store for both admin and users. <a target="_blank" href="https://wpswings.com/woocommerce-plugins/?utm_source=wpswings-subs-shop&utm_medium=subs-org-backend&utm_campaign=shop-page">Elevate your e-commerce store by exploring more on WP Swings</a>
    18  * Version:           1.9.1
     18 * Version:           1.9.2
    1919 * Author:            WP Swings
    2020 * Author URI:        https://wpswings.com/?utm_source=wpswings-subs-official&utm_medium=subs-org-backend&utm_campaign=official
     
    180180    function define_subscriptions_for_woocommerce_constants() {
    181181
    182         subscriptions_for_woocommerce_constants( 'SUBSCRIPTIONS_FOR_WOOCOMMERCE_VERSION', '1.9.1' );
     182        subscriptions_for_woocommerce_constants( 'SUBSCRIPTIONS_FOR_WOOCOMMERCE_VERSION', '1.9.2' );
    183183        subscriptions_for_woocommerce_constants( 'SUBSCRIPTIONS_FOR_WOOCOMMERCE_DIR_PATH', plugin_dir_path( __FILE__ ) );
    184184        subscriptions_for_woocommerce_constants( 'SUBSCRIPTIONS_FOR_WOOCOMMERCE_DIR_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.