Extensions
New Groups Restrict Categories and Groups Import Export.
- Groups 404 Redirect allows to redirect visits to pages that are protected by Groups.
- Groups Blog Protect restricts access to blogs based on group membership.
- Groups File Access Groups File Access is an extension that allows to provide file download links for authorized users. Access to files is restricted to users by their group membership.
- Groups Forums provides a powerful and yet light-weight forum system for WordPress sites.
- Groups Gravity Forms allows to add users to groups automatically, based on form submissions.
- Groups Import Export – An import and export extension for Groups.
- Groups Jigoshop Groups integration for Jigoshop that supports memberships and subscriptions.
- Groups Newsletters helps you to communicate efficiently, providing targeted information to groups of recipients through automated campaigns.
- Groups Notifications allows to send automatic notifications to group members and the site administrator.
- Groups PayPal – Sell memberships and subscriptions with Groups and PayPal.
- Groups Restrict Categories features access restrictions for categories, tags and other WordPress taxonomies, including support for custom post types and taxonomies.
- Groups Restrict Comments Pro This extension for Groups allows to restrict who can post or read comments based on a user’s group membership.
- Groups Subscriptions is a subscription framework for Groups.
- Groups WooCommerce Groups for WooCommerce is a WordPress plugin that allows you to sell memberships.
- WooCommerce Group Coupons This extension for WooCommerce uses Groups and WordPress roles to limit the validity of coupons.
- WooCommerce Groups Newsletters The WooCommerce Groups Newsletters extension lets customers subscribe to newsletters at checkout.
Features
User groups
- Supports an unlimited number of groups
- Provides a Registered group which is automatically maintained
- Users can be assigned to any group
- Users are added automatically to the Registered group
Groups hierarchy
- Supports group hierarchies with capability inheritance
Group capabilities
- Integrates standard WordPress capabilities which can be assigned to groups and users
- Supports custom capabilities: allows to define new capabilities for usage in plugins and web applications
- Users inherit capabilities of the groups they belong to
- Groups inherit capabilities of their parent groups
Access control
- Built-in access control that allows to restrict access to posts, pages and custom content types to specific groups and users only
- control access to content by groups: shortcodes allow to control who can access content on posts, show parts to members of certain groups or to those who are not members Shortcodes: [groups_member], [groups_non_member]
- control access to content by capabilities: show (or do not show) content to users who have certain capabilities Shortcodes: [groups_can], [groups_can_not]
Easy user interface
- integrates nicely with the standard WordPress Users menu
- provides an intuitive Groups menu
- conceptually clean views showing the essentials
- quick filters
- bulk-actions where needed, for example apply capabilities to groups, bulk-add users to groups, bulk-remove users from groups
Sensible options
- administrator overrides can be turned off
- optional tree view for groups can be shown only when needed
- provides its own set of permissions
- cleans up after testing with a “delete all plugin data” option
Access Control
Groups defines some capabilities of its own. The groups_read_post capability is used to restrict access to certain posts or pages to groups (and users) with that capability only.
Framework
- Solid and sound data-model with a complete API that allows developers to create group-oriented web applications and plugins
Multisite
- All features are supported independently for each blog in multisite installations
Your opinion counts
You & Groups
Beta-testers and developers who need to integrate group-based features in their plugins and web applications: please use it and provide your feedback.
Feedback
Feedback is welcome!
If you need help, have problems, want to leave feedback or want to provide constructive criticism, please do so here at the Groups plugin page.
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. Thanks!
Follow me on Twitter for updates on this and other plugins.
Introduction
Content Access Control
Access restrictions on posts
On posts an pages (and custom content types) a new meta box titles Access restrictions appears. By checking Enforce read access, you can restrict access to the post to groups and users who have the groups_read_post capability. You need to assign this capability to a group and make users members of that group to allow them to see those posts.
Content visibility for members and non-members
The [groups_member] and [groups_non_member] shortcodes are used to limit visibility of content to users who are members of a group or users who are not members of a group. Multiple comma-separated groups can be specified.
Example: Limiting visibility of enclosed content to registered users.
[groups_member group="Registered"]
Only registered users can see this text.
[/groups_member]
Content visibility based on capabilities
The [groups_can] and [groups_can_not] shortcodes limit visibility of enclosed content to those users who have the capability or those who do not have it. Multiple capabilities can be given.
Example: Showing enclosed content to users who can edit_posts (standard WordPress capability).
[groups_can capability=”edit_posts”]
You can see this only if you have the edit_posts capability.
[/groups_can]
Integration in the ‘Users’ menu:
Users – group membership is managed from the standard Users admin view. Users are automatically added to the Registered group. You can add multiple users to other groups here and also remove them.
Sections in the ‘Groups’ menu:
Groups
Here you can:
- add groups
- remove groups
- assign capabilities to groups
Capabilities
This is where you add, remove and manage capabilities.
Capabilities can be assigned to groups and users (1). These capabilities include the standard WordPress capabilities but you can also define additional capabilities for your web-application.
Groups defines some capabilities of its own. The groups_read_post capability is used to restrict access to certain posts or pages to groups (and users) with that capability only.
(1) Assigning capabilities to users is not integrated in the user interface yet but can be done through API calls.
Options
Administrator override :
Administrator overrides can be turned off.
Permissions :
For each role these permissions can be set:
- Access Groups: see information related to Groups.
- Administer Groups: complete control over everything related to Groups.
- Administer Groups plugin options: grants access to make changes on the Groups > Options admin section.
Testing the plugin :
A convenient option is provided to delete all data that has been stored by the Groups plugin. This option is useful if you just need to start from fresh after you have been testing the plugin.
Shortcodes
Please visit the documentation page on shortcodes for up-to-date information: Groups Shortcodes
Download
Download the Groups plugin on WordPress.
Hi,
I use the group plugin on a page that runs with the Divi theme. I use the plugin to lock certain pages to specific groups. I want the option to display a custom unauthorized message when an unauthorized visitor tries to view a locked page. I have tried to use the shortcode [groups_non_member group="premiumgold"]Custom message[groups_non_member group="premiumgold"] to display an unauthorized message, but it does not work. Seems like the shortcodes only work for pages that are not locked directly. But because I use the Divi builder to create content then it does not work for me to use shortcodes to wrap content that should be hidden. So the perfect solution would be that I could continue use the protect functionality directly from the edit page screen, but add a shortcode that display a custom message to all non-group members of a specific group.
Hi Andreas,
The shortcode you have indicated is missing a forward slash
/
in the closing shortcode tag – the correct form is:[groups_non_member group="premiumgold"]Custom message[/groups_non_member group="premiumgold"]
You can in fact combine page-protection with content-protection using the shortcode or Groups’ blocks. You can simply protect the page using one group and protect content inside that page further with the shortcode or the blocks.
Cheers