BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Mike,

    Thank you for sharing the details. I will look for the solution and will get back to you.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Not Showing Blocked Users #42372

    Hello Jimmy,

    I have tested it on my local development and it is working fine for me. Please share your staging site credentials so that I can check the issue.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Author Archive Page #42371

    Hello Daniel,

    Thank you for sharing the solution. I am glad that the problem is resolved on your own.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] How to create a template #42370

    Hello David,

    Try the following code

    
    add_filter( 'bp_get_template_locations', function ( $locations ) {
    	$locations[] = 'community-new';
    
    	return $locations;
    } );
    
    

    It will now check for a directory with the name ‘community-new’ for templates.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Nifty,

    Thank you for reporting the issue. Yes, It is a bug with the legacy template pack. We have updated the plugin. Please upgrade to the newer version of the plugin and give it a try.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Nifty,

    Please upgrade your plugin and Give it a try. Now the user will be redirected to the member’s directory if try to access the suspended user profile.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Mike,

    Thank you for sharing the details. With Legacy you can add the custom filter options like the following code:

    
    add_filter( 'bp_get_activity_show_filters_options', function ( $options ) {
    // If not on single user screen return default options.
    	if ( ! bp_is_user() ) {
    		return $options;
    	}
    
    	if ( ! isset( $options['asc'] ) ) {
    		$options['asc'] = __( 'Ascending Order' );
    	}
    
    	if ( ! isset( $options['desc'] ) ) {
    		$options['desc'] = __( 'Descending Order' );
    	}
    
    	return $options;
    } );
    
    

    Then you can filter activity based on these options. Please let me know if it helps or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] How to create a template #42350

    Hello David,

    Try the filter ‘bp_get_template_locations’ provided by BuddyPress. Please check and let me know if it helps you or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Author Archive Page #42349

    Hello Daniel,

    Thank you for posting. Please try ‘posts’ instead of ‘author’ and then give it a try. Please check the following screenshot

    https://www.awesomescreenshot.com/image/19430895?key=0371deab9a9791ca8033264aef9b8d99

    If not provided use ‘post’

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Derrick,

    I have tested this plugin and it is working fine for me. Are you able to see other feedback messages?.
    This issue is coming probably with your custom theme. Please try after switching to the default WordPress theme. Also, let me know which template pack you are using i.e. Nouveau or Legacy.

    Regards
    Ravi