Replies
Thank you for your quick response.
as you can see in the screenshot labels & keys are the same but…
Help appreciated.
BrunoHi there,
I take the liberty of continuing this thread to keep track of all feature requests in one place.
I suggest adding to each custom field an optional user text field to describe the purpose of the field.
Add an option for checkboxes and radio buttons to have the option to display them horizontally or vertically.
Add an option to define the overall width of the field (by default 100%), but which can also be 30% or 50% to display fields side by side.Thank You
Thank you so much.
I’ll check it next week and come back to you.It looks really cool.
Bruno- This reply has been marked as private.
- Bruno Verrier on October 18, 2020 at 7:06 pm in reply to: Specific Group Moderator/Admin rights #33994
Hi Brajesh,
Yes, In my Buddypress environment I have 20 private groups with their own forums.
A user can access to one or several specific groups.
Only admin can accept members in its group. And a user can be admin for one group and user only to to another group. So I ask if there is a way to give a user admin rights for a specific group. eg he/she is admin for group dentist, user for group therapists and have no access to group oncologists.
Hope I’m clear enough.
Thank you
Bruno - This reply has been marked as private.
Is there anybody ?
😉Hello Brajesh
Any news?- This reply has been marked as private.
Hi Brajesh,
Ok, I’m not a PHP guy (I’m a graphist) anyway.
Here is the code I created. Is there an easier way to do this?‘// Update Admin Toolbar Function
function my_update_adminbar($wp_adminbar) {// remove unnecessary items
$wp_adminbar->remove_node(‘wp-logo’);
$wp_adminbar->remove_node(‘bp-login’);
$wp_adminbar->remove_node(‘new-content’);
$wp_adminbar->remove_node(‘site-name’);
$wp_adminbar->remove_node(‘search’);
}
function my_update_adminbar_modo($wp_adminbar) {// remove unnecessary items
$wp_adminbar->remove_node(‘wp-logo’);
$wp_adminbar->remove_node(‘bp-login’);
$wp_adminbar->remove_node(‘site-name’);
$wp_adminbar->remove_node(‘new-media’);
}// admin_bar_menu hook action if not admin
if (! is_user_logged_in()) {
add_filter(‘show_admin_bar’, ‘__return_false’);}
elseif ( is_user_logged_in() && ! current_user_can( ‘publish_forums’ )) {
add_action(‘admin_bar_menu’, ‘my_update_adminbar’, 999);}
elseif ( is_user_logged_in() && current_user_can( ‘publish_forums’ )) {
add_action(‘admin_bar_menu’, ‘my_update_adminbar_modo’, 999);}
elseif ( current_user_can( ‘manage_options’ ) ) {
add_filter(‘show_admin_bar’, ‘__return_true’);
}’
Thx