Replies
- Brajesh Singh on July 24, 2020 at 1:47 pm in reply to: [Resolved] Change buddypress username minimum length to 3 #31915
Hi Tosin,
I am sorry for the delayed reply.You can add the following code to make it work with the user name availability checker too.
/** * For Username availability checker. */ add_filter( 'buddydev_uachecker_username_error', function ( $message, $username ) { // There was no error, return. if ( empty( $message ) ) { return $message; } // make sure it is our 4 letter issue. if ( ! empty( $username ) && strlen( $username ) < 4 ) { // let us allow 2 letter or above. $allowed_length = 2; // change it to impose your own limit. if ( strlen( $username ) < $allowed_length ) { $message = __( 'Username should have atleast 2 characters' ); } else { $message = ''; // reset. } } return $message; }, 10, 2 );Regards
Brajesh - Brajesh Singh on July 24, 2020 at 1:29 pm in reply to: Need Clear notification on user profile #31914
Hi Sureh,
Thank you for using the plugin.I am sorry, we are unable to update it at the moment due to other priorities. It will need some theme specific changes I am guessing.
If you are a developer, Please feel free to send a pull request on github
https://github.com/sbrajesh/bp-clear-notificationsThank you
Brajesh - Brajesh Singh on July 24, 2020 at 1:27 pm in reply to: [Resolved] Buddypress block not working properly #31913
Hi Tosin,
I am sorry for the inconvenience.
which theme are you using?
Regards
Brajesh - Brajesh Singh on July 23, 2020 at 3:14 pm in reply to: [Resolved] Automatic recognition when registering via Google #31900
All the best.
Regards
Brajesh Hi Theo,
My apologies for taking time to reply you on this one. We were undecided on which direction to go.Currently, BuddyPress team has their own plans to implement a media component(in next 2 releases, either 7.0 or by 8.0).
We are exploring the option for MediaPress without BuddyPress or to work in conjunction with what BuddyPress offers(yet to be seen). There does not seem any benefit of duplicating the efforts.
We have abandoned our plans for RT media import and our main focus is to provide better usability, improve the structure and may be to explore a better integration with WordPress.
We are also exploring the option to move our video/docs/audio from MediaPress to a separate free addon. That should help us focus better on photo gallery experience. Working with video/audio in core has been a problematic decision due to the nature of web playable video/audio format.
We will have some major updates for MediaPress this year mostly focusing on improving experience.
Regards
Brajesh- This reply has been marked as private.
- Brajesh Singh on July 23, 2020 at 1:16 pm in reply to: [Resolved] buddycommerce integration with TeraWallet #31896
Hi Ershad,
Welcome to BuddyDev support forums.
At the moment, we are unable to include it in the plugin as we lack experience with Tera Wallet.
The code provided by Ward should work fine.
Please share the complete code you are using(on pastebin.com and link me) and make sure it is in wp-content/plugins/bp-custom.php
Regards
Brajesh Hi Steven,
Thank you for the question.No, there is no such configuration currently.
Regards
Brajesh- Brajesh Singh on July 23, 2020 at 11:23 am in reply to: SHORT CODE / PAGE / DEFAULT THEME Buddyboss #31892
Hi Sandrine,
Thank you for the reply.I am not sure what is the issue.
Here is what I am getting
https://i.imgur.com/TvGBxqa.png
and here is the shortcode I am using
https://i.imgur.com/dlgzuXV.png
Could there be some caching?
Regards
Brajesh - Brajesh Singh on July 23, 2020 at 9:18 am in reply to: [Resolved] MediaPress Conflict with Buddypress Activity Stream #31891
Hi Gregory.
Thank you for the reply.Is the site accessible over web? If yes, Please provide me a temporary guest account(subscriber account).
I can quickly check and assist you.
Regards
BrajeshPS:- If sharing credential, Please use private reply checkbox below the reply form.