Skip to content

Commit

Permalink
2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
intoxstudio committed Dec 16, 2023
1 parent ebe5d58 commit 3c36443
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 45 deletions.
2 changes: 1 addition & 1 deletion app.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ final class RUA_App
/**
* Plugin version
*/
const PLUGIN_VERSION = '2.4.3';
const PLUGIN_VERSION = '2.5';

/**
* Prefix for metadata
Expand Down
32 changes: 32 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
= 2.1.3 =

* [new] wordpress 5.6 support
* [updated] wp-content-aware-engine library
* [updated] freemius sdk

= 2.1.2 =

* [new] identical taxonomy names are now displayed with their post type
* [fixed] error when attempting to add member to non-existing level
* [fixed] non-member redirection for custom links
* [fixed] taxonomy and attachment condition suggestions would not display all results

= 2.1.1 =

* [fixed] users could not be added to levels, regression from v2.1

= 2.1 =

* [new] intelligent search by id in post type condition
* [new] intelligent search by id, email in author condition
* [new] ui and performance improvements
* [new] wordpress 5.5 support
* [new] restrict shortcode supports multiple levels
* [new] restrict shortcode drip_days parameter
* [new] RUA_User_Level_Interface and RUA_Level_Interface interfaces
* [updated] wp-content-aware-engine library
* [updated] freemius sdk
* [updated] RUA_User_Interface interface
* [updated] improved non-member redirection
* [fixed] condition option to auto-select new children

= 2.0 =

* [new] default access option to lockdown levels
Expand Down
61 changes: 23 additions & 38 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
=== Restrict User Access - Membership & Content Protection ===
=== Restrict User Access - Ultimate Membership & Content Protection ===
Contributors: intoxstudio, devinstitute, keraweb, freemius
Donate link: #
Tags: restrict content, membership, access control, capabilities, members, bbpress, buddypress
Requires at least: 5.0
Requires PHP: 5.6
Tested up to: 6.2
Stable tag: 2.4.3
Tested up to: 6.4
Stable tag: 2.5
License: GPLv3

Create Access Levels and restrict any post, page, category, etc. Supports bbPress, BuddyPress, WooCommerce, WPML, and more.
Expand All @@ -24,10 +24,12 @@ Users can have multiple levels, and you control how long memberships should last

Automatically add levels to your users based on something they do (Triggers) or something they are (Traits):

* Product Purchases (WooCommerce, Easy Digital Downloads)
* User Roles
* Logged-in or Guests
* WooCommerce Purchases
* Easy Digital Downloads Purchases
* BuddyPress Member Types
* GiveWP Donations

###🔒 Contextual Content Protection

Expand All @@ -52,9 +54,9 @@ The following Access Conditions are available out of the box:

The easy-to-use WordPress User Manager gives you full control over the capabilities the members should or shouldn't have. Access Level Capabilities will override the permissions set by roles or other plugins.

###⚙️ Hide Widget Areas & Nav Menus
###⚙️ Hide Admin Bar & Nav Menu Visibility

Completely hide navigation menu items or Widget Areas created with [Content Aware Sidebars](https://dev.institute/wordpress-sidebars/) from users without select level memberships.
Disable the admin bar for select levels and control what menu items members can see. You can even hide any widget area created with [Content Aware Sidebars](https://dev.institute/wordpress-sidebars/)

###🤖 Restrict Content from Other Plugins

Expand Down Expand Up @@ -181,12 +183,27 @@ Of course! Check out the links below:

== Upgrade Notice ==

Plugin data will be updated automatically. It is strongly recommended to take a backup of your site.

== Changelog ==

[Follow development and see all changes on GitHub](https://github.com/intoxstudio/restrict-user-access)

####Highlights

= 2.5 =

* [new] admin ability to extend, search, and sort memberships
* [new] member trait - givewp donation
* [new] wp multisite network support
* [new] greatly improved membership data storage
* [new] wordpress 6.4 support
* [new] minimum wordpress version 5.1
* [new] minimum php version 7.0
* [new] ui and performance improvements
* [updated] wp-content-aware-engine library
* [updated] freemius sdk

= 2.4.3 =

* [new] wordpress 6.2 support
Expand Down Expand Up @@ -272,36 +289,4 @@ Of course! Check out the links below:
* [fixed] tease option does not support archive pages, fallback to redirect
* [deprecated] user role synchronizations in favor of automations

= 2.1.3 =

* [new] wordpress 5.6 support
* [updated] wp-content-aware-engine library
* [updated] freemius sdk

= 2.1.2 =

* [new] identical taxonomy names are now displayed with their post type
* [fixed] error when attempting to add member to non-existing level
* [fixed] non-member redirection for custom links
* [fixed] taxonomy and attachment condition suggestions would not display all results

= 2.1.1 =

* [fixed] users could not be added to levels, regression from v2.1

= 2.1 =

* [new] intelligent search by id in post type condition
* [new] intelligent search by id, email in author condition
* [new] ui and performance improvements
* [new] wordpress 5.5 support
* [new] restrict shortcode supports multiple levels
* [new] restrict shortcode drip_days parameter
* [new] RUA_User_Level_Interface and RUA_Level_Interface interfaces
* [updated] wp-content-aware-engine library
* [updated] freemius sdk
* [updated] RUA_User_Interface interface
* [updated] improved non-member redirection
* [fixed] condition option to auto-select new children

See changelog.txt for previous changes.
10 changes: 5 additions & 5 deletions restrict-user-access.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
* @package Restrict User Access
* @author Joachim Jensen <joachim@dev.institute>
* @license GPLv3
* @copyright 2022 by Joachim Jensen
* @copyright 2023 by Joachim Jensen
*
* Plugin Name: Restrict User Access
* Plugin URI: https://dev.institute/wordpress-memberships/
* Description: Easily restrict content and contexts to provide exclusive access for specific Access Levels.
* Version: 2.4.3
* Author: Joachim Jensen - DEV Institute
* Version: 2.5
* Author: DEV Institute
* Author URI: https://dev.institute
* Requires at least: 5.0
* Requires PHP: 5.6
* Requires at least: 5.1
* Requires PHP: 7.0
* Text Domain: restrict-user-access
* Domain Path: /lang/
* License: GPLv3
Expand Down
2 changes: 1 addition & 1 deletion view/meta_box_members.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
printf(' <span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_attr($_GET['s']));
}

$list_members->search_box('Search Members', 'post');
$list_members->search_box(__('Search Members'), 'post');
$list_members->display();
echo '<p></p><select class="js-rua-user-suggest" multiple="multiple" name="users[]"></select>';

Expand Down

0 comments on commit 3c36443

Please sign in to comment.