Replies
- 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.
- Brajesh Singh on December 4, 2019 at 6:54 am in reply to: BuddyPress Member Types Pro – LearnDash Groups #26909This reply has been marked as private.
- Brajesh Singh on December 4, 2019 at 6:36 am in reply to: BuddyPress Member Types Pro – LearnDash Groups #26906This reply has been marked as private.
- Brajesh Singh on December 4, 2019 at 6:03 am in reply to: BuddyPress Member Types Pro – LearnDash Groups #26903This reply has been marked as private.
- Brajesh Singh on December 4, 2019 at 4:41 am in reply to: [Resolved] BuddyPress Member Types Pro – Paid Membership Pro Multiple Levels #26902
Thank you.
I will look into 1-2 hour and get back to you.
Regards
Brajesh - Brajesh Singh on December 4, 2019 at 3:51 am in reply to: [Resolved] BuddyPress Member Types Pro – Paid Membership Pro Multiple Levels #26897
Hi Amir,
Please avoid trying all the ways. If you use multiple triggers like Paid Membership Pro and the WooCommerce subscriptions, the behaviour is not predictable.Instead, Please reply on the Learndash topic, or provide us access to your current setup and if there is an issue, we will fix it quickly.
If you don’t feel comfortable, we have a 100% refund policy and I am happy to issue the refund.
Thank you
Brajesh - Brajesh Singh on December 4, 2019 at 3:48 am in reply to: [Resolved] Woocommerce memberships – BuddyPress Member Types Pro #26896
Please check your wp-content/plugins directory.
If it is not preset, you can create a file with name bp-custom.php
Since it is a php file, Please make sure it starts with php tag as shown here
https://pastebin.com/raw/mf2fzdxa (you can copy paste)After that, add the code from above and it will show the option to select membership from the member types create/edit screen.
Regards
Brajesh - Brajesh Singh on December 4, 2019 at 3:18 am in reply to: [Resolved] Woocommerce memberships – BuddyPress Member Types Pro #26893
Hi,
I am sorry if we did not update it . I was requested that the changing member type based on subscription is more logical, so we did it.You can still enable the old behaviour by putting this in your bp-custom.phjp
add_filter( 'bpmtp_enable_wc_memberships_change_by_member_type', '__return_true');Regards
Brajesh