BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24697
    Brajesh Singh on in reply to: Password Reset via Email address only, not username #53937

    Hi Michael,

    Thank you for the question.

    You can enforce it using the following code.

    
    
    /**
     * Force password retrieval by email id only.
     */
    add_filter( 'lostpassword_errors', function ( $errors ) {
    
    	if ( $errors->has_errors() ) {
    		return $errors;
    	}
    	$user_login = isset( $_POST['user_login'] ) ? wp_unslash( $_POST['user_login'] ) : '';
    
    	if ( ! $user_login ) {
    		return $errors;
    	}
    
    	if ( ! is_email( $user_login ) ) {
    		$errors->add( 'invalid_username', __( 'Please use your email id for retrieving password.' ) );
    	}
    
    	return $errors;
    } );
    

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

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24697
    Brajesh Singh on in reply to: Warning / Error on Buddydev deactivate account plugin #53936

    Wow!
    You are basically using our pirated plugins, using multiple account and abusing our support by pretending to ask for real support, and then when we ask for your order id, it gets on your nerve?

    I will suggest that please avoid abusing our free support and we expect you to not use our **buggy** plugins as a pirated plugin user.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24697

    Hi,
    Thank you for the reply.

    I am sorry, I could not look into it due to lack of time. Since you are not using it and it is not reported by anyone else, I will be looking into it with a low priority(may be at the beginning of new year now).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24697
    Brajesh Singh on in reply to: Warning / Error on Buddydev deactivate account plugin #53922

    Hi Kevin,
    May I know your order number please?

    In order to assist you further, please help me with your order id or any details to locate your purchase.

    The error could be due to old plugin version.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24697
    Brajesh Singh on in reply to: [Resolved] Questions to your block user plugin #53921

    Thank you.
    I am assuming that this post was a mistake as you have no access to our plugin?

    I will close the topic as requested.

  • Keymaster
    (BuddyDev Team)
    Posts: 24697
    Brajesh Singh on in reply to: Issue with Profanity Blocker not working #53915

    Thank you. I have received the files. You may disable/change password for the account you shared here. I believe we can have full compatibility with this theme. I will update you within next 24 hours with plugin update.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24697
    Brajesh Singh on in reply to: BP Deactivate Account – Bugs #53911

    Hi Katrine,
    Thank you.
    I am glad it worked.

    I will look into the MediaPress and Anonymous activity issue again this weekend and let you know early Monday. We already did one way disabling, achieving two way is a bit complicated but I will give it another try this weekend.

    Have a great day.

    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24697
    Brajesh Singh on in reply to: Issue with Profanity Blocker not working #53910
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24697
    Brajesh Singh on in reply to: BP Deactivate Account – Bugs #53907

    Hi Katrine,
    Thank you.

    I am glad the Profile completion worked.

    There is a bug in BuddyBoss global search causing the fatal error.

    Please open wp-content/plugins/buddypress-global-search/includes/search-types/class.BBoss_Global_Search_Type.php this and change line number 105 from this

    
    			return isset( $this->search_results['items'][$itemid] ) ? @$this->search_results['items'][$itemid]['html'] : '';
    

    to

    
    	return isset( $this->search_results['items'][ $itemid ] ) && is_array( $this->search_results['items'][ $itemid ] ) && isset( $this->search_results['items'][ $itemid ]['html'] ) ? $this->search_results['items'][ $itemid ]['html'] : '';
    		
    

    That will fix it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24697
    Brajesh Singh on in reply to: Issue with Profanity Blocker not working #53904
    This reply has been marked as private.