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

    Thank you for confirming.

    Most probably, that filter will be obsolete by then, no need to worry about it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Julia,
    Please use version 1.0.5
    https://buddydev.com/plugins/bp-community-activity-on-profile/

    That has the form available on it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Brendan,
    Please allow me till tomorrow to post the code.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Top Visitors widget #15033

    Hi Julia,
    The name is “Most Visited Users” not “Top Visitors Widget”.

    That widget is designed to show the most popular users on your site.

    It is not for showing who visited you. It shows who are the most visited users on the site.

    Hope that clarifies.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

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

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

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

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