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 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

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

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    You are welcome.

    It is in the plugins/mediapress/languages directory.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Buddypress user circle popup #31827

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: MediaPress Photo Album Styling #31824

    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