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

    Please check if the update has fixed it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Feature: Featured members in different categories #7514

    Hi,
    The update is available now.

    It will allow you to filter the list by BuddyPress member types. We had to skip on WordPress roles since the bp_has_members() does not accept the role parameter. We could use BP_User_Query but that will break the Theme view.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Jared,
    Thank you for reporting.

    Please do not buy the support package for the plugin. I will look into it today/tomorrow and will get back to you.

    Most probably, It is a BuddyPress issue as multi netrok does not play with routes, it simply changes the tables. I am still going to look and see what change in bp is causing it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] Buddypress Branded Login #7465

    Hi Matthias,
    Please login to the dashboard and create pages for
    – Logout
    -Login
    -Forgot Password.

    Then please visit Settings->BuddyPress->pages and assign these pages to the Login/logout/reset password pages there.

    That should make it work.

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

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Cathy,
    Is there any chance that you copied the code from the notification email. The code might have been entity encoded.
    can you please post it on pastebin and link me?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Cathy,
    Please put this code in your bp-custom.php

    
    
    function buddydev_exclude_users_in_bp_user_query( $query ) {
    
    	if ( ! function_exists( 'bp_profile_visibility_manager' ) ) {
    		return;
    	}
    
    	$excluded = bp_profile_visibility_manager()->get_users( 'bp_profile_visibility', 'self' );
    	//should we exclude friends only profile too?
    	$excluded = array_merge( $excluded, bp_profile_visibility_manager()->get_users( 'bp_profile_visibility', 'friends' ) );
    
    	$pre_excluded = empty( $query->query_vars['exclude'] ) ? array() : wp_parse_id_list( $query->query_vars['exclude'] );
    
    	if ( ! empty( $pre_excluded ) ) {
    		$excluded = array_merge( $excluded, $pre_excluded );
    	}
    
    	$query->query_vars['exclude'] = $excluded;
    
    }
    
    add_action( 'bp_pre_user_query_construct', 'buddydev_exclude_users_in_bp_user_query' );
    
    

    Please do let me know if it works or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi,
    I just tested on WordPress 4.7.2 and BuddyPress 2.8.1 and It is working fine for me.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi,
    can you please explain me again? I am sorry but I could not understand the issue.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Activity ShortCode Plugin #7450

    Hi MW93,
    That action seems to be the issue here. Which plugin are you using to attach media to the activity stream? All plugins add their own action type. You will need to include that action type to make it work.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Mediapress Upload Photo from iPhone #7447

    Hi BD,
    I am setting up a demo site today for you. will message back here in the evening with the details.

    I am not sure of the issue yet, so may be this will help.