Replies
- Brajesh Singh on July 20, 2020 at 9:24 am in reply to: Logout Redirect to Mainsite for Multisite/BuddyPress confusion #31837
Hi Carsten,
Thank you for the question.The logout redirect is for WordPress multisite. It doe snot redirect to profile. The description is incorrect.
Please use Login redirect instead.
Regards
Brajesh - Brajesh Singh on July 20, 2020 at 6:08 am in reply to: [Resolved] Change name in Buddypress profile from 'Gallery' to something else #31834
You are welcome.
- Brajesh Singh on July 20, 2020 at 6:07 am in reply to: Different Member Types, Different Display Names #31833
Hi RES,
Thank you for the question.It is a simple customization. you can do it with a couple of lines of code.
I will rephrase your question and share the code.
Here is the code that will show nice name for all users except the teacher(for them, let the full name work).
/** * Filter Display Name. */ add_filter( 'bp_core_get_user_displayname', function ( $name, $user_id ) { if ( ! bp_has_member_type( $user_id, 'teacher' ) ) { $name = bp_members_get_user_nicename( $user_id ); } return $name; }, 10, 2 ); /** * Filter Displayed User full name for BuddyPress. */ add_filter( 'bp_displayed_user_fullname', function ( $name ) { if ( ! bp_has_member_type( bp_displayed_user_id(), 'teacher' ) ) { $name = bp_members_get_user_nicename( bp_displayed_user_id() ); } return $name; } );You can put it in bp-custom.php in plugins directory or functions.php of your theme.
Regards
Brajesh - Brajesh Singh on July 20, 2020 at 4:09 am in reply to: [Resolved] Hide buddypress block button in members directory #31832
Hi Tosin,
Thank you for the suggestion. It will be available as part of our upcoming release this week.I will post back after the release.
Regards
Brajesh - Brajesh Singh on July 20, 2020 at 4:06 am in reply to: BuddyPress Confirm Actions support for buddypress block users plugin #31831
Hi Tosin,
Thank you for the suggestion.I am not sure if we should do it as an option since Confirm Action is a different plugin. We have an update of BuddyPress Block User this week and I will let you know how to achieve this after the release(may be adding some code to enable it).
Thank you
Brajesh - Brajesh Singh on July 20, 2020 at 4:03 am in reply to: [Resolved] Change name in Buddypress profile from 'Gallery' to something else #31829
You are welcome.
It is in the plugins/mediapress/languages directory.
Regards
Brajesh Hi Tosin,
Thank you for the suggestion. It will need some time before we can have it. I will note it down for future implementation.Thank you
Brajesh- Brajesh Singh on July 20, 2020 at 3:59 am in reply to: [Resolved] Change name in Buddypress profile from 'Gallery' to something else #31826
Hi Vanessa,
Thank you for the question.You may use any of the translation tools to do it. I will recommend using poedit. You may use any WordPress localization plugin to achieve the same.
Regards
Brajesh - Brajesh Singh on July 20, 2020 at 3:58 am in reply to: Activity Plus Reloaded – two "submit" buttons in a single post #31825
Hi Rick,
I am sorry for the inconvenience.We do not have a way to predicatively solve it. Most of the BuddyPress theme implement js where their submit button becomes visible if you focus the post box.
I do not see a simple solution(out of the box) for this currently.I will be exploring a bit more and will get back to you if we can do it as a generalized solution.
Regards
Brajesh Hi Daniel,
Thank you for the question.Can you please show me a screenshot to illustrate what is the instagram mosaik.
I do not use Instagram currently. Tried searching on google but could not find a simple screenshot.
I will be interested in exploring it.
Thank you
Brajesh