Version Description
Download this release
Release Info
Developer | itthinx |
Plugin | Groups |
Version | 2.16.2 |
Comparing to | |
See all releases |
Code changes from version 2.16.1 to 2.16.2
- changelog.txt +3 -0
- groups.php +2 -2
- lib/admin/class-groups-admin-welcome.php +1 -1
- readme.txt +21 -3
changelog.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
== Groups by itthinx - changelog.txt
|
2 |
|
|
|
|
|
|
|
3 |
= 2.16.1 =
|
4 |
* Fixes a parse error caused by a trailing `,`.
|
5 |
|
1 |
== Groups by itthinx - changelog.txt
|
2 |
|
3 |
+
= 2.16.2 =
|
4 |
+
* Fixes a PHP 8.1 warning related to the passing of a null parameter to version_compare().
|
5 |
+
|
6 |
= 2.16.1 =
|
7 |
* Fixes a parse error caused by a trailing `,`.
|
8 |
|
groups.php
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
* Plugin Name: Groups
|
22 |
* Plugin URI: https://www.itthinx.com/plugins/groups
|
23 |
* Description: Groups provides group-based user membership management, group-based capabilities and content access control.
|
24 |
-
* Version: 2.16.
|
25 |
* Author: itthinx
|
26 |
* Author URI: https://www.itthinx.com
|
27 |
* Donate-Link: https://www.itthinx.com/shop/
|
@@ -32,7 +32,7 @@
|
|
32 |
if ( !defined( 'ABSPATH' ) ) {
|
33 |
exit;
|
34 |
}
|
35 |
-
define( 'GROUPS_CORE_VERSION', '2.16.
|
36 |
define( 'GROUPS_FILE', __FILE__ );
|
37 |
if ( !defined( 'GROUPS_CORE_DIR' ) ) {
|
38 |
define( 'GROUPS_CORE_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
|
21 |
* Plugin Name: Groups
|
22 |
* Plugin URI: https://www.itthinx.com/plugins/groups
|
23 |
* Description: Groups provides group-based user membership management, group-based capabilities and content access control.
|
24 |
+
* Version: 2.16.2
|
25 |
* Author: itthinx
|
26 |
* Author URI: https://www.itthinx.com
|
27 |
* Donate-Link: https://www.itthinx.com/shop/
|
32 |
if ( !defined( 'ABSPATH' ) ) {
|
33 |
exit;
|
34 |
}
|
35 |
+
define( 'GROUPS_CORE_VERSION', '2.16.2' );
|
36 |
define( 'GROUPS_FILE', __FILE__ );
|
37 |
if ( !defined( 'GROUPS_CORE_DIR' ) ) {
|
38 |
define( 'GROUPS_CORE_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
|
lib/admin/class-groups-admin-welcome.php
CHANGED
@@ -72,7 +72,7 @@ class Groups_Admin_Welcome {
|
|
72 |
Groups_Options::update_user_option( 'groups-welcome-dismiss', $groups_version );
|
73 |
}
|
74 |
}
|
75 |
-
$groups_welcome_dismiss = Groups_Options::get_user_option( 'groups-welcome-dismiss',
|
76 |
if ( version_compare( $groups_version, $groups_welcome_dismiss ) > 0 ) {
|
77 |
if ( get_transient( 'groups_plugin_activated' ) || get_transient( 'groups_plugin_updated_legacy' ) ) {
|
78 |
$doing_ajax = defined( 'DOING_AJAX' ) && DOING_AJAX;
|
72 |
Groups_Options::update_user_option( 'groups-welcome-dismiss', $groups_version );
|
73 |
}
|
74 |
}
|
75 |
+
$groups_welcome_dismiss = Groups_Options::get_user_option( 'groups-welcome-dismiss', '' );
|
76 |
if ( version_compare( $groups_version, $groups_welcome_dismiss ) > 0 ) {
|
77 |
if ( get_transient( 'groups_plugin_activated' ) || get_transient( 'groups_plugin_updated_legacy' ) ) {
|
78 |
$doing_ajax = defined( 'DOING_AJAX' ) && DOING_AJAX;
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: groups, access, access control, membership, memberships, member, members,
|
|
5 |
Requires at least: 5.5
|
6 |
Tested up to: 6.0
|
7 |
Requires PHP: 5.6.0
|
8 |
-
Stable tag: 2.16.
|
9 |
License: GPLv3
|
10 |
|
11 |
Groups is an efficient and powerful solution, providing group-based user membership management, group-based capabilities and content access control.
|
@@ -85,6 +85,22 @@ Fully supports custom post types, so that access to post types such as products
|
|
85 |
|
86 |
- All features are supported independently for each blog in multisite installations
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
### Feedback ###
|
89 |
|
90 |
Feedback is welcome!
|
@@ -93,9 +109,11 @@ If you need help, have problems, want to leave feedback or want to provide const
|
|
93 |
|
94 |
Please try to solve problems there before you rate this plugin or say it doesn't work. There goes a _lot_ of work into providing you with free quality plugins! Please appreciate that and help with your feedback. Many thanks!
|
95 |
|
96 |
-
####
|
|
|
|
|
97 |
|
98 |
-
|
99 |
|
100 |
### Translations ###
|
101 |
|
5 |
Requires at least: 5.5
|
6 |
Tested up to: 6.0
|
7 |
Requires PHP: 5.6.0
|
8 |
+
Stable tag: 2.16.2
|
9 |
License: GPLv3
|
10 |
|
11 |
Groups is an efficient and powerful solution, providing group-based user membership management, group-based capabilities and content access control.
|
85 |
|
86 |
- All features are supported independently for each blog in multisite installations
|
87 |
|
88 |
+
### Extensions ###
|
89 |
+
|
90 |
+
Enhanced functionality is available via official [Extensions](https://www.itthinx.com/shop/) for Groups.
|
91 |
+
|
92 |
+
Groups is a large project that is providing essential functionality to tens of thousands of sites since 2012. By getting an official extension, you help fund the work that is necessary to maintain and improve Groups.
|
93 |
+
|
94 |
+
- [Groups WooCommerce](https://www.itthinx.com/shop/groups-woocommerce/) : Sell Memberships with Groups and WooCommerce – the best Group Membership and Access Control solution for WordPress and WooCommerce.
|
95 |
+
- [WooCommerce Group Coupons](https://www.itthinx.com/shop/woocommerce-group-coupons/) : Automatically apply and restrict coupon validity for user groups. Offer exclusive, automatic and targeted discounts for your customers.
|
96 |
+
- [Groups Drip Content](https://www.itthinx.com/shop/groups-drip-content/) : Release content on a schedule. Content dripping can be based on user account creation, group memberships and specific dates and times.
|
97 |
+
- [Groups File Access](https://www.itthinx.com/shop/groups-file-access/) : Allows to provide file download links for authorized users. Access to files is restricted to users by their group membership.
|
98 |
+
- [Groups Restrict Categories](https://www.itthinx.com/shop/groups-restrict-categories/) : Features access restrictions for categories, tags and other WordPress taxonomies, including support for custom post types and taxonomies.
|
99 |
+
- [Groups Forums](https://www.itthinx.com/shop/groups-forums/) : A powerful and yet light-weight forum system for WordPress sites.
|
100 |
+
- [Groups Import Export](https://www.itthinx.com/shop/groups-import-export/) : Provides import and export facilities around users and groups.
|
101 |
+
- [Groups Newsletters](https://www.itthinx.com/shop/groups-newsletters/) : Newsletter Campaigns for Subscribers and Groups.
|
102 |
+
- [Widgets Control Pro](https://www.itthinx.com/shop/widgets-control-pro/) : An advanced Widget toolbox that adds visibility management and helps to control where widgets are shown efficiently.
|
103 |
+
|
104 |
### Feedback ###
|
105 |
|
106 |
Feedback is welcome!
|
109 |
|
110 |
Please try to solve problems there before you rate this plugin or say it doesn't work. There goes a _lot_ of work into providing you with free quality plugins! Please appreciate that and help with your feedback. Many thanks!
|
111 |
|
112 |
+
#### Stay informed or contribute ####
|
113 |
+
|
114 |
+
Follow @itthinx on [Twitter](https://twitter.com/itthinx) and [GETTR](https://gettr.com/user/itthinx) for news related to Groups and other plugins.
|
115 |
|
116 |
+
Get development notifications, contribute code or open issues at the repository on [GitHub](https://github.com/itthinx/groups).
|
117 |
|
118 |
### Translations ###
|
119 |
|