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

    Hi,
    Welcome to BuddyDev.

    Can you please explain the issue in a little more details.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: "BuddyPress Deactivate Account" email notification #10440

    Hi Margarita,
    i have sent you a copy. Please do check.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi Graham,
    Sorry about the delay. I will be pushing an update today and informing you.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: "BuddyPress Deactivate Account" email notification #10437

    Thank you. In that case, I will send you a copy in half an hour.

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: "BuddyPress Deactivate Account" email notification #10435

    Hi Margrita,

    @ravisharma
    has worked on it and it is being tested for multisite today..

    If you are on a non multisite installation, I can send you a copy for now. Otherwise, I am waiting for @ravisharma to complete his testing before we put it on the site.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Load more button with activity stream shortcode #10427

    Hi Lucia,
    My apologies for the inconvenience.

    The problem is BuddyPress does not support load more/ajax pagination for multiple item loops on the same page. In this case, clicking load more will update all your loops on current page.

    If you want multiple loop with load more(on same page), you will need to add your own custom loader. The default BuddyPress implementation will not work.

    this plugin does not add any new js, it simply uses the one included with BuddyPress/your theme.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: forum Page #10425

    Hi Frances,
    My apologies but we won’t be able to assist with it. You will need to hire a developer/designer to achieve that kind of layout/functionality depending on your current theme.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi Nim,
    1. Using the code to change label is a bad idea. IO suggest using the translation tools(poedit) to translate the text.

    If you still want to do that, please change your code to this

    
    
    define ( 'BP_FRIENDS_SLUG', 'partner' );
    
    function bpcodex_rename_profile_tabs() {
    	if ( ! is_user_logged_in() ) {
    		return;
    	}
    
    	buddypress()->members->nav->edit_nav( array( 'name' => __( 'Partner', 'textdomain' ) ), 'partner' );
    }
    add_action( 'bp_setup_nav', 'bpcodex_rename_profile_tabs' );
    
    

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Buddypress Profile Template #10423

    Hi Alessio,
    There are multiple ways to do it.

    You can create buddypress.php in your theme and that will be used as a wrapper for all the layout. There are other ways too.

    If you can point me the difference you are trying to achieve(please add some screenshots), I can assist better.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    I guess it has become irrelevent after your last settings update.

    In future, to enable the use of slug on profile, you can add following code to your theme’s functions.php or the bp-custom.php

    
    
    add_filter( 'buddyblog_use_slug_in_permalink', '__return_true' );
    
    

    Hope that helps.
    Regards
    Brajesh