BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24766
    Brajesh Singh on in reply to: [Resolved] Issue with Profanity Blocker not working #53973

    Hi Antonio,
    Thank you for confirming.

    I am sorry that a I could not see this in the original post. We should have noted the issue and assisted you much earlier!

    Thank you for your patience with us.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24766

    Also, I am not angry, I am amused by your sense of entitlement.

    1. You created 2 accounts on our site without any disclosure.
    2. You used both account to request support at different times. For us, It was a misleading act.

    3. You downloaded our paid plugin from some other site and expect us to support you.

    4. You blame us that with a lie that we don’t have refund option without even checking our pricing page?

    Do I need to provide more details to show you that you are abusing our support here?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24766

    Hi,
    Please do not make unsubstantiated allegations. Have you checked our pricing page? We have a 30 days, no questions refund policy and it is explicitly mentioned at multiple places!

    We have no issues if you buy a pirated version or download it form anywhere as all our plugins are GPL licensed.
    As of supporting, If you are buying from anywhere else, we do not have any obligation to support you. Our time has value and it costs us money to support here. You should request for support from the place you buy this plugin.

    We are happy to help with our free plugins here to everyone but for paid plugin support, you need to have a license.

    Also, about your bug report:- It is a php notice(not an error) caused by BuddyPress 14.0 as they deprecated a function and it was not a bug or anything that you insinuated introduced at our part. We added a check for the existence of that function to ensure anyone using it on older version will not face the issue. If you did not upgrade from older version of BuddyPress, you won’t even have this notice.

    Regards
    Brajesh

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

    Hi Michael,
    Thank you for confirming that it works.

    The code does not modify any label(only shows error).

    You can use any of the localization plugin to change the text labels( e.g loco translate or something similar).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24766
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24766

    Hi Antonio,
    I am terribly sorry for the delay. It was a configuration issue that I could not note from the screenshot(pdf).

    The list needs to be comma separated.

    Example:- badword1,badword2,badword3 and so on.

    Please try doing it and let me know if itworks or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24766
    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: 24766

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

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

    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