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

    Hi Charles,
    Thank you. That helps me to see that the activity module is inactive.

    Can you please also tell me which theme are you using(It might help to diagnose).

    Also, are you using any other member listing/restriction plugin or custom code?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25299

    Hi Joanne,
    I am sorry for the inconvenience.

    Please allow me to update it by this Monday or before. I will keep you posted.

    Thank you for the patience.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25299
    Brajesh Singh on in reply to: [Resolved] Redirect to /all-activity #15030

    Hi Julai,
    Please use the following code

    
    function buddydev_custom_redirect_to_profile_all_activity( $redirect_to_calculated, $redirect_url_specified, $user ) {
    	if ( ! $user || is_wp_error( $user ) ) {
    		return $redirect_to_calculated;
    	}
    
    	return bp_core_get_user_domain( $user->ID ) . 'all-activity';
    
    }
    
    add_filter( 'login_redirect', 'buddydev_custom_redirect_to_profile_all_activity', 101, 3 );
    
    

    Best regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25299

    Hi Herve,

    I am sorry but I am not able to assist on it.
    The problem is not that I can not do it, the problem is use of the 3rd party membership plugin. I don’t have any domain knowledge of that plugin and I am unable to spend time on that specific plugin.

    Without the domain knowledge, I am handicapped and that’s why I haven’t been able to assist you with it.

    The best person to help you on this are the membership plugin developer. I can help in the BuddyPress section or anything they need.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25299

    Hi Gregg,

    I have checked the plugin again.
    We do have the facility to allow the visibility for admin’s activity.

    Please put this code

    
    /**
     * Do not hide admin's activity from site admin.
     *
     * @param bool $hide hide .
     *
     * @return bool
     */
    function buddydev_custom_show_admin_activity( $hide ) {
    	if ( is_super_admin() ) {
    		$hide = false;
    	}
    
    	return $hide;
    }
    
    add_filter( 'bp-sm-hide-activity', 'buddydev_custom_show_admin_activity' );
    
    

    In your bp-custom.php or your theme’s functions.php and it will be visible for site admin.
    In future, we will put it as an option in settings.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25299
    Brajesh Singh on in reply to: [Resolved] Contact Form update broke site #15026

    Hi Sujee,

    I checked and it seems we might have different version of our settings framework causing the issue.

    If possible, can you please list me the plugins from us that you are using(or all if that is easy)?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25299

    Hi Thorsten,
    It is very strange that removing timestamp from a user can cause this. Still, I am going to test it this weekend with all of these and will update you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25299
    Brajesh Singh on in reply to: URGENT ! Can't logout, my client complain #15017

    Please disable this plugin and check again.
    It seems to me you are redirecting to a page which might not be accessible for the normal users.

    Is there any restriction plugin? if yes, Please do check the permission for the Logout page.

  • Keymaster
    (BuddyDev Team)
    Posts: 25299
    Brajesh Singh on in reply to: URGENT ! Can't logout, my client complain #15014

    Hi Julia,
    Can you please tell me if the logout button from the adminbar is working or not?

    Please visit Dashboard and from the adminbar select logout, is it working?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25299

    Hi Thorsten,
    Thank you for the screenshot.
    It seems to me when we remove the time something is throwing fatal error and causing rest of the items to go blank.’

    I will suggest enabling WP_DEBUG and post me the fatal error.

    I can hopefully make sense of that and find a reason.

    Regards
    Brajesh