Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    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 activated
    
    

    You 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: BuddyPress Member Types Pro – LearnDash Groups #26910
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: BuddyPress Member Types Pro – LearnDash Groups #26909
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: BuddyPress Member Types Pro – LearnDash Groups #26906
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: BuddyPress Member Types Pro – LearnDash Groups #26903
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Thank you.

    I will look into 1-2 hour and get back to you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    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