Version Description
Download this release
Release Info
Developer | caseproof |
Plugin | Members |
Version | 3.0.9 |
Comparing to | |
See all releases |
Code changes from version 3.0.8 to 3.0.9
- addons/members-acf-integration/src/Plugin.php +7 -2
- changelog.md +6 -0
- members.php +1 -1
- readme.txt +5 -5
addons/members-acf-integration/src/Plugin.php
CHANGED
@@ -159,8 +159,13 @@ class Plugin {
|
|
159 |
return;
|
160 |
}
|
161 |
|
162 |
-
|
163 |
-
|
|
|
|
|
|
|
|
|
|
|
164 |
}
|
165 |
|
166 |
/**
|
159 |
return;
|
160 |
}
|
161 |
|
162 |
+
global $acf_instances;
|
163 |
+
$admin = $acf_instances['ACF_Admin'];
|
164 |
+
|
165 |
+
if ( ! empty( $admin ) ) {
|
166 |
+
remove_action( 'admin_menu', [ $admin, 'admin_menu' ] );
|
167 |
+
add_action( 'admin_menu', [ $admin, 'admin_menu' ], 8 );
|
168 |
+
}
|
169 |
}
|
170 |
|
171 |
/**
|
changelog.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1 |
# Change Log
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
## 3.0.8 - 2020-04-28
|
4 |
|
5 |
### Fixed
|
1 |
# Change Log
|
2 |
|
3 |
+
## 3.0.9 - 2020-06-22
|
4 |
+
|
5 |
+
### Fixed
|
6 |
+
|
7 |
+
- Fixed issue with ACF integration trying to bump priority on ACF menu
|
8 |
+
|
9 |
## 3.0.8 - 2020-04-28
|
10 |
|
11 |
### Fixed
|
members.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Members
|
4 |
* Plugin URI: https://memberpress.com/plugins/members
|
5 |
* Description: A user and role management plugin that puts you in full control of your site's permissions. This plugin allows you to edit your roles and their capabilities, clone existing roles, assign multiple roles per user, block post content, or even make your site completely private.
|
6 |
-
* Version: 3.0.
|
7 |
* Author: MemberPress
|
8 |
* Author URI: https://memberpress.com
|
9 |
* Text Domain: members
|
3 |
* Plugin Name: Members
|
4 |
* Plugin URI: https://memberpress.com/plugins/members
|
5 |
* Description: A user and role management plugin that puts you in full control of your site's permissions. This plugin allows you to edit your roles and their capabilities, clone existing roles, assign multiple roles per user, block post content, or even make your site completely private.
|
6 |
+
* Version: 3.0.9
|
7 |
* Author: MemberPress
|
8 |
* Author URI: https://memberpress.com
|
9 |
* Text Domain: members
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: members, memberships, users, roles, capabilities, editor, security, access
|
|
6 |
Requires at least: 4.7
|
7 |
Tested up to: 5.4
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 3.0.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -39,11 +39,11 @@ If you're looking to build a business out of your membership site by creating pa
|
|
39 |
Members now includes ALL of it's add-ons completely free of charge! Here are some of the awesome features they add to Members:
|
40 |
|
41 |
* **Block Permissions:** Allows site owners to hide or show blocks based on user logged-in status, user role, or capability.
|
42 |
-
* **Privacy Caps:** Creates additional capabilities for control over WordPress
|
43 |
* **Admin Access:** Allows site administrators to control which users have access to the WordPress admin via role.
|
44 |
* **Core Create Caps:** Adds the create_posts and create_pages caps to posts/pages to separate them from their edit_* counterparts, providing more flexible editing capabilities.
|
45 |
* **Categories and Tag Caps:** The Category and Tag Caps add-on creates custom capabilities for the core category and post tag taxonomies. This allows site owners to have precise control over who can manage, edit, delete, or assign categories/tags.
|
46 |
-
* **Role Levels:** Exposes the old user levels system, which fixes the WordPress author drop-down bug when users don
|
47 |
* **Role Hierarchy:** Creates a hierarchical roles system.
|
48 |
* **ACF Integration:** Creates custom capabilities for the Advanced Custom Fields (ACF) plugin for managing with the Members plugin.
|
49 |
* **EDD Integration:** Integrates the Easy Digital Downloads plugin capabilities into the Members plugin's role manager.
|
@@ -55,7 +55,7 @@ For more info, visit the [Members plugin home page](https://memberpress.com/plug
|
|
55 |
|
56 |
### Like this plugin?
|
57 |
|
58 |
-
The Members plugin is a massive project with 1,000s of lines of code to maintain. A major update can take weeks or months of work. We don
|
59 |
|
60 |
* [Upgrading to MemberPress](https://memberpress.com/?utm_source=members_plugin&utm_medium=link&utm_campaign=readme&utm_content=memberpress_upgrade).
|
61 |
* [Rating the plugin](https://wordpress.org/support/plugin/members/reviews/?filter=5#new-post).
|
@@ -122,4 +122,4 @@ You'll need to stop by our [support forums](https://memberpress.com/plugins/memb
|
|
122 |
|
123 |
== Changelog ==
|
124 |
|
125 |
-
The change log is located in the `changelog.md` file in the plugin folder. You may also [view the change log](https://github.com/caseproof/members/blob/master/changelog.md) online.
|
6 |
Requires at least: 4.7
|
7 |
Tested up to: 5.4
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 3.0.9
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
39 |
Members now includes ALL of it's add-ons completely free of charge! Here are some of the awesome features they add to Members:
|
40 |
|
41 |
* **Block Permissions:** Allows site owners to hide or show blocks based on user logged-in status, user role, or capability.
|
42 |
+
* **Privacy Caps:** Creates additional capabilities for control over WordPress’ privacy and personal data features (GDPR).
|
43 |
* **Admin Access:** Allows site administrators to control which users have access to the WordPress admin via role.
|
44 |
* **Core Create Caps:** Adds the create_posts and create_pages caps to posts/pages to separate them from their edit_* counterparts, providing more flexible editing capabilities.
|
45 |
* **Categories and Tag Caps:** The Category and Tag Caps add-on creates custom capabilities for the core category and post tag taxonomies. This allows site owners to have precise control over who can manage, edit, delete, or assign categories/tags.
|
46 |
+
* **Role Levels:** Exposes the old user levels system, which fixes the WordPress author drop-down bug when users don’t have a role with one of the assigned levels.
|
47 |
* **Role Hierarchy:** Creates a hierarchical roles system.
|
48 |
* **ACF Integration:** Creates custom capabilities for the Advanced Custom Fields (ACF) plugin for managing with the Members plugin.
|
49 |
* **EDD Integration:** Integrates the Easy Digital Downloads plugin capabilities into the Members plugin's role manager.
|
55 |
|
56 |
### Like this plugin?
|
57 |
|
58 |
+
The Members plugin is a massive project with 1,000s of lines of code to maintain. A major update can take weeks or months of work. We don’t make any money directly from this plugin while other, similar plugins charge substantial fees to even download them or get updates. Please consider helping the cause by:
|
59 |
|
60 |
* [Upgrading to MemberPress](https://memberpress.com/?utm_source=members_plugin&utm_medium=link&utm_campaign=readme&utm_content=memberpress_upgrade).
|
61 |
* [Rating the plugin](https://wordpress.org/support/plugin/members/reviews/?filter=5#new-post).
|
122 |
|
123 |
== Changelog ==
|
124 |
|
125 |
+
The change log is located in the `changelog.md` file in the plugin folder. You may also [view the change log](https://github.com/caseproof/members/blob/master/changelog.md) online.
|