Plugin Directory

Changeset 3304099


Ignore:
Timestamp:
06/01/2025 01:51:31 AM (10 months ago)
Author:
wpwham
Message:

Version 1.8.3 update

Location:
product-visibility-by-user-role-for-woocommerce/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • product-visibility-by-user-role-for-woocommerce/trunk/product-visibility-by-user-role-for-woocommerce.php

    r3143167 r3304099  
    44Plugin URI: https://wpwham.com/products/product-visibility-by-user-role-for-woocommerce/
    55Description: Display WooCommerce products by customer's user role.
    6 Version: 1.8.2
     6Version: 1.8.3
    77Author: WP Wham
    88Author URI: https://wpwham.com/
    99Text Domain: product-visibility-by-user-role-for-woocommerce
    1010Domain Path: /langs
    11 WC tested up to: 9.2
    12 Copyright: © 2018-2024 WP Wham. All rights reserved.
     11Copyright: © 2018-2025 WP Wham. All rights reserved.
    1312License: GNU General Public License v3.0
    1413License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3736}
    3837
    39 define( 'WPWHAM_PRODUCT_VISIBILITY_BY_USER_ROLE_VERSION', '1.8.2' );
     38define( 'WPWHAM_PRODUCT_VISIBILITY_BY_USER_ROLE_VERSION', '1.8.3' );
    4039
    4140add_action( 'before_woocommerce_init', function() {
     
    5150 *
    5251 * @class   Alg_WC_PVBUR
    53  * @version 1.8.2
     52 * @version 1.8.3
    5453 * @since   1.0.0
    5554 */
     
    6665     * @since 1.0.0
    6766     */
    68     public $version = '1.8.2';
     67    public $version = '1.8.3';
    6968
    7069    /**
     
    9493     * Alg_WC_PVBUR Constructor.
    9594     *
    96      * @version 1.4.0
     95     * @version 1.8.3
    9796     * @since   1.0.0
    9897     * @access  public
     
    101100
    102101        // Set up localisation
    103         load_plugin_textdomain( 'product-visibility-by-user-role-for-woocommerce', false, dirname( plugin_basename( __FILE__ ) ) . '/langs/' );
     102        add_action( 'init', array( $this, 'load_localization' ) );
    104103
    105104        // Include required files
     
    110109            $this->admin();
    111110        }
     111    }
     112   
     113    /**
     114     * @since   1.8.3
     115     */
     116    public function load_localization() {
     117        load_plugin_textdomain( 'product-visibility-by-user-role-for-woocommerce', false, dirname( plugin_basename( __FILE__ ) ) . '/langs/' );
    112118    }
    113119
  • product-visibility-by-user-role-for-woocommerce/trunk/readme.txt

    r3143167 r3304099  
    33Tags: woo commerce, woocommerce, product, visibility, user role
    44Requires at least: 4.4
    5 Tested up to: 6.6
    6 Stable tag: 1.8.2
     5Tested up to: 6.8
     6Stable tag: 1.8.3
    77License: GNU General Public License v3.0
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3333
    3434== Changelog ==
     35
     36= 1.8.3 - 2025-05-31 =
     37* FIX: PHP notice.
    3538
    3639= 1.8.2 - 2024-08-28 =
Note: See TracChangeset for help on using the changeset viewer.