Replies
- Brajesh Singh on November 22, 2018 at 1:21 pm in reply to: [Resolved] Media Rating Top Rated Media – Show all media #18904
Hi Keith,
Thank you.I am sorry for the trouble. Certainly we can do that. Please allow me to update the widget today/tomorrow and get back to you.
Regards
Brajesh - Brajesh Singh on November 22, 2018 at 1:18 pm in reply to: [Resolved] buddypress Deactivate Account Plugin #18903
Hi Jeff,
We have a filter to allow any user to act as admin for deactivation.Here is an example where I am checking if the current user is editor and if it is true, we allow to see the button and do it for other users.
/** * @param $allow * * @return bool */ function buddydev_custom_deactivator_permission( $allow ) { // let us allow editors. if ( ! $allow ) { $allow = current_user_can( 'delete_others_posts' ); } return $allow; } add_filter( 'bp_account_deactivator_user_can_change_account_status', 'buddydev_custom_deactivator_permission' );If you have a custom role, You may be using some custom capability. You can swap the capability with your own.
Please let me know if it works.
Regards
Brajesh Hi Irene,
I am sorry, the working with BuddyPress private message is not that simple. Hiding button is different thing but doing so with compose screen, suggestion etc needs more involved code.I am sorry that we don’t have enough free resource at the moment to assist you with this request.
Regards
BrajeshHi Phil,
Thank you.I had a look at the theme and I see that it is injecting font awesome icons using some filter(most probably) and not using css.
In this case, I am unable to find the filter and will need you to ask theme developers for how they are adding the icon.
Once they specify it, Please let me know and I will assist from there.
Regards
Brajesh- Brajesh Singh on November 22, 2018 at 2:20 am in reply to: [Resolved] Remove the subject line requirement in messages? #18892
Hi Carsten,
You can put that in your theme’s javascript file. Look for js file in your theme.Regards
Brajesh - Brajesh Singh on November 22, 2018 at 2:19 am in reply to: Show BuddyPress User Registration form everywhere on your BuddyPress site #18891
Hi Carsten,
Someone created a widget with my code and put it on WordPress.org.You may use that and avoid the coding
https://wordpress.org/plugins/buddy-registration-widget/
Regards
Brajesh - Brajesh Singh on November 22, 2018 at 2:06 am in reply to: [Resolved] Does BuddyBlog work BuddyPress User Profile Tabs Creator Pro #18890
Hi Cartsten,
When you created a tab for modification, did you use ‘buddyblog’ as the slug?Regards
Brajesh - Brajesh Singh on November 22, 2018 at 2:03 am in reply to: [Resolved] MPP Gallery Categories – Thanks! #18889
Thank you George. I am conveying it to Ravi(@ravisharma) as he did most of the thing.
Regards
Brajesh - Brajesh Singh on November 22, 2018 at 2:02 am in reply to: Setting Member Types (with Members Types Pro) on user-new.php form #18888
Hi,
Xprofile fields are not supported on Dashboard->Add User screen.In this case, you can change the following line
update_user_meta($user_id, 'member type', $_POST['MemberType']);with this
if ( ! empty( $_POST['MemberType'] ) ) { bp_set_member_type( $user_id, $_POST['MemberType'] ); }That will make it work.
Regards
Brajesh Hi Sir,
The new registration page is provided by BuddyPress and that’s why it is looking different.If you don’t like this style, Please try using legacy template(Please visit Dashboard->Settings->BuddyPress->Options and select BP Legacy).
If even that does not suit your need, either you will need someone to do custom css or avoid using BUddyPress for registration.
Regards
Brajesh