Changeset 3304099
- Timestamp:
- 06/01/2025 01:51:31 AM (10 months ago)
- Location:
- product-visibility-by-user-role-for-woocommerce/trunk
- Files:
-
- 2 edited
-
product-visibility-by-user-role-for-woocommerce.php (modified) (7 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
product-visibility-by-user-role-for-woocommerce/trunk/product-visibility-by-user-role-for-woocommerce.php
r3143167 r3304099 4 4 Plugin URI: https://wpwham.com/products/product-visibility-by-user-role-for-woocommerce/ 5 5 Description: Display WooCommerce products by customer's user role. 6 Version: 1.8. 26 Version: 1.8.3 7 7 Author: WP Wham 8 8 Author URI: https://wpwham.com/ 9 9 Text Domain: product-visibility-by-user-role-for-woocommerce 10 10 Domain Path: /langs 11 WC tested up to: 9.2 12 Copyright: © 2018-2024 WP Wham. All rights reserved. 11 Copyright: © 2018-2025 WP Wham. All rights reserved. 13 12 License: GNU General Public License v3.0 14 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 37 36 } 38 37 39 define( 'WPWHAM_PRODUCT_VISIBILITY_BY_USER_ROLE_VERSION', '1.8. 2' );38 define( 'WPWHAM_PRODUCT_VISIBILITY_BY_USER_ROLE_VERSION', '1.8.3' ); 40 39 41 40 add_action( 'before_woocommerce_init', function() { … … 51 50 * 52 51 * @class Alg_WC_PVBUR 53 * @version 1.8. 252 * @version 1.8.3 54 53 * @since 1.0.0 55 54 */ … … 66 65 * @since 1.0.0 67 66 */ 68 public $version = '1.8. 2';67 public $version = '1.8.3'; 69 68 70 69 /** … … 94 93 * Alg_WC_PVBUR Constructor. 95 94 * 96 * @version 1. 4.095 * @version 1.8.3 97 96 * @since 1.0.0 98 97 * @access public … … 101 100 102 101 // 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' ) ); 104 103 105 104 // Include required files … … 110 109 $this->admin(); 111 110 } 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/' ); 112 118 } 113 119 -
product-visibility-by-user-role-for-woocommerce/trunk/readme.txt
r3143167 r3304099 3 3 Tags: woo commerce, woocommerce, product, visibility, user role 4 4 Requires at least: 4.4 5 Tested up to: 6. 66 Stable tag: 1.8. 25 Tested up to: 6.8 6 Stable tag: 1.8.3 7 7 License: GNU General Public License v3.0 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 33 33 34 34 == Changelog == 35 36 = 1.8.3 - 2025-05-31 = 37 * FIX: PHP notice. 35 38 36 39 = 1.8.2 - 2024-08-28 =
Note: See TracChangeset
for help on using the changeset viewer.