Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on 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-notifications

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Tosin,

    I am sorry for the inconvenience.

    which theme are you using?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    All the best.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Migrate from rtmedia #31899

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Clear All Notifications Not Showing #31897
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Friends Plugin #31894

    Hi Steven,
    Thank you for the question.

    No, there is no such configuration currently.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    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
    Brajesh

    PS:- If sharing credential, Please use private reply checkbox below the reply form.