BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] BP Autologin on Activation #2915

    Thank you for the kind words. I am glad it is working 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: My problem or a bug? Comments in lightbox #2914

    Hi,
    Thank you for the post and you are right.
    There is an issue. I tested and can confirm it.

    Working on a fix and will update you soon about this.

    Thank you for letting me know about it.

    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: Jetpack photon #2911

    Hi Joost,
    Thank you for the details.
    Please give me a day to look into it. We may have some solution.

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] BP Autologin on Activation #2910

    Hi Blade,
    Please give it a try

    
    add_action( 'bp_actions', 'bp_custom_redirect_to_2ndgroup' );
    
    function bp_custom_redirect_to_2ndgroup() {
    
    	if ( bp_is_user_profile_edit() && bp_get_current_profile_group_id() == 1 ) {
    		bp_core_redirect(bp_displayed_user_domain() . 'profile/edit/group/2' );
    	}
    
    }
    
    

    Please do let me know if that works for you or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] Misspelled strings #2908

    Hi Joost,
    Thank you.
    I have fixed it in the github repo. Will be pushing an update on wp.org on Wednesday with all the changes.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] BP Autologin on Activation #2903

    Hi Blade,
    Thank you.

    I am sure it will help others. Thank you for sharing 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] BP Autologin on Activation #2898

    Hi Blade,
    My apologies for the delayed reply.
    Please use this code instead.

    
    add_filter( 'bpdev_autoactivate_redirect_url','redirect_to_edit_profile', 10, 2 );
    
    function redirect_to_edit_profile( $profile_url, $user_id  ) {
    	return $profile_url .'profile/edit/';
    }
    
    

    It will work. Please let me know if that works for you or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] Delete image redirect #2897

    Thank you Jem 🙂
    Will post back here after the update.

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Jasmin,
    I am sorry for the inconvenience.

    Please make thi line

    
    'add_screen' => false
    

    to

    
    'add_screen' =>true
    

    In the custom code you are using for the image size. Please let me know if that works or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Paul,
    You should most probably not use the component ‘sitewide’ .
    Your User gallery and media should use ‘members’ component.

    Can you please check with that(Please make sure to enable the members component in the backend to avoid any issue).