Plugin Author
WPKube
(@wpkube)
Hi @dabbas
Since it’s not a native WordPress functionality we’ll need to check out how it works in order to see if we can make it compatible.
But that plugin hasn’t been updated in 4 years, I suggest finding a replacement plugin that’s still supported by the developers and let us know which plugin you decide to go with and we can make it compatible with that plugin.
Thread Starter
dabbas
(@dabbas)
Hi, I searched there is no Different plugin can give the same functionality,
Whoever, I create a custom user role instead of groups for users “it helps my purpose” also I’ve created a custom user taxonomy but I couldn’t list the attributed users.
can you help me to Display users by custom user role or by custom user taxonomy?
Plugin Author
WPKube
(@wpkube)
Hi @dabbas
You can use the roles parameter. Example:
[authors_list roles="editor"]
You can use multiple roles as well:
[authors_list roles="editor,administrator"]
Thread Starter
dabbas
(@dabbas)
Thanks for your help, Sure I tried this one but as I mentioned above it’s not working for custom user role I created the custom role basically by adding this code to theme function.php
function wps_add_role() {
add_role( 'manager', 'Manager',
array(
'read',
'edit_posts',
'delete_posts',
)
);
}
add_action( 'init', 'wps_add_role' );
Thread Starter
dabbas
(@dabbas)
then when I but this [authors_list roles="manager"] the plugin Display nothing even when I chose skip_empty=no
Thread Starter
dabbas
(@dabbas)
It’s working, it’s displing the users by custom taxonomy
I had another issue that was preventing from disabling the users
Plugin Author
WPKube
(@wpkube)
Hi @dabbas
Happy to hear it’s working.