Replies
- Brajesh Singh on December 4, 2019 at 6:50 pm in reply to: [Resolved] Disable Activation prevents "Forgot Password" Email #26930
Hi Blake,
Thank you for the patience. It seems the above code may not work from theme’s functions.php.
Please use FTP and navigate to wp-content/plugins directory.
Do you have a file named bp-custom.php there? If yes, Please append the code from my previous message
add_filter( 'bp_core_signup_send_activation_key', '__return_true', 111 );If you do not have this file, Please create a file there and name it bp-custom.php and put the contents from following page
https://pastebin.com/raw/j0WCitnA
The only difference is that the new file contains the beginign php tag.
This approach works as I tested before replying.
PS:- Make sure to change the email subject as it is ” Your username and password” which is confusing.
Regards
Brajesh - Brajesh Singh on December 4, 2019 at 6:40 pm in reply to: BuddyPress Member Types Pro – LearnDash Groups #26929
Hi Amir,
Thank you.I have pushed the update.
Please upgrade to 1.3.9.
regards
Brajesh - Brajesh Singh on December 4, 2019 at 6:40 pm in reply to: [Resolved] Woocommerce memberships – BuddyPress Member Types Pro #26928
Thank you Amir.
We do not plan to remove it in near future to avoid breaking backward compatibility.Marking it resolved.
Regards
Brajesh - Brajesh Singh on December 4, 2019 at 6:39 pm in reply to: [Resolved] BuddyPress Member Types Pro – Paid Membership Pro Multiple Levels #26927
Thank you Amir.
marking resolved.Regards
Brajesh - Brajesh Singh on December 4, 2019 at 6:02 pm in reply to: [Resolved] Disable Activation prevents "Forgot Password" Email #26923
Hi Blake,
I am sorry for the inconvenience.Please allow me to check and get back to you in next 30 – 45 mins.
Thank you
Brajesh - Brajesh Singh on December 4, 2019 at 3:56 pm in reply to: User Profile Tabs Creator Pro contradictory options in settings #26919
Hi Carsten,
Thank you.2. I will test and get back to you tomorrow.
3. Yes there is. There are times when you may want a tab to be avilable on certain role’s profile and then control which visitor roles an see them.
For example, You can make a tab 1 available on subscriber profile which is only visible to subscriber and editor using these 2 options.Here is a snippet that adds different css class to body depending on which profile you are viewing
add_filter( 'body_class', function ( $classes ) { if ( ! bp_is_user() ) { return $classes; } if ( bp_is_my_profile() ) { $classes [] = 'is-my-profile'; } else { $classes [] = 'is-other-profile'; } return $classes; } );I hope you can use it to target different profiles.
Regards
Brajesh - Brajesh Singh on December 4, 2019 at 3:48 pm in reply to: [Resolved] Flag Symbol Instead of 'Report' #26918
Hi,
This will work fine but may I know why do you prefer this method over translation.Translation will allow you to keep the changes in future while with this method, It will be lost in next upgrade.
PS:- If needed, I can help with how you can translate.
Regards
Brajesh - Brajesh Singh on December 4, 2019 at 3:39 pm in reply to: [Resolved] Disable Activation prevents "Forgot Password" Email #26917
Hi Blake,
Thank you.I am glad that worked as expected.
Since BuddyPress sends a validation email on account creation(user registration), we had that disabled by using this code
add_filter( 'bp_core_signup_send_activation_key', '__return_false', 110 ); // 5 args,no need to send the clear text password when blog is activatedYou can either enable it by putting this code in theme’s functions.php
add_filter( 'bp_core_signup_send_activation_key', '__return_true', 111 );Or I can put an update by tomorrow with a settings panel that will allow you to select it there.
Please let me know which suits you.
Regards
Brajesh - Brajesh Singh on December 4, 2019 at 3:11 pm in reply to: [Resolved] Disable Activation prevents "Forgot Password" Email #26915
Hi,
Welcome to BuddyDev forums.1. Can you please tell me what exactly you want to achieve. That will help me assist you better. I am sorry, I am not sure from the above.
We do prevent sending mail for forgotten password but it is only when user account is created. If you are trying to reset password for existing account, It does not prevent the mail.
Since the user already saves password while registering with BuddyPress, so the forgot password email on account creation was a nuisance.
Also, we have a 100% refund policy. Let me assist you with your issue. If not, let me know and I will issue the refund.
Regards
Brajesh - Brajesh Singh on December 4, 2019 at 7:45 am in reply to: BuddyPress Member Types Pro – LearnDash Groups #26910This reply has been marked as private.