Skip to:
Content
Pages
Categories
Search
Top
Bottom

  • About
  • News
  • Codex
  • Develop
  • Make
  • Forums
  • Download

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Terry Burton

    Terry Burton's profile was updated 7 years, 4 months ago

    Terry Burton

    @trards17

    View Profile
  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 7 years, 4 months ago

    Hi,

    You can use this plugin https://wordpress.org/plugins/bp-registration-options/ which allows moderation and members will be restricted to their own profile till when they are not approved. And after approval, a mail will be sent to them.

    Maybe this solution can help you with what you want to achieve.

    Thanks

  • Profile picture of Nahum

    Nahum started the topic How to set the default member directory Tab in the forum How-to & Troubleshooting 7 years, 4 months ago

    If using multiple new member types, how do we set the default to another member type tab instead of All Members?

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic ARGH — A 'horizontal ellipsis' is preventing display of 'group description' in the forum How-to & Troubleshooting 7 years, 4 months ago

    Hi,

    I think you are using nouveau template pack because in the legacy it is not the case.

    But with nouveau also they have provided a filter apply_filters( 'bp_excerpt_length', $length );

    which one can use to write their function to change the length of the excerpt.

    add_filter( 'bp_excerpt_length', 'ps_change_excerpt_length',10,1…[Read more]

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 7 years, 4 months ago

    Welcome 🙂

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 7 years, 4 months ago

    add_filter( 'gettext', 'ps_change_activation_message', 20, 3 );

    function ps_change_activation_message( $translated_text, $text, $domain ) {

    switch ( $translated_text ) {
    case 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.'…
    [Read more]

  • Profile picture of Ruth Lambert

    Ruth Lambert's profile was updated 7 years, 4 months ago

    Ruth Lambert

    @ruthlambert3

    View Profile
  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 7 years, 4 months ago

    https://wordpress.org/plugins/code-snippets/ Please add this plugin and then in snippets add a new snippet and paste the code.

    Thanks

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 7 years, 4 months ago

    add_filter( 'bp_core_signup_send_activation_key', 'ps_disable_activation_email' );
    function ps_disable_activation_email() {
    return false;
    }

    Please try this code.

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic [VERY URGENT] Register page not showing in the forum How-to & Troubleshooting 7 years, 4 months ago

    Welcome 🙂 Glad to help you.

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic How to Submit Registration and Redirect in the forum Creating & Extending 7 years, 4 months ago

    function ps_bp_redirect($user) {
    $redirect_url = 'your_url_here';
    wp_safe_redirect( add_query_arg( array( 'user' => $_POST['signup_username'] , 'email'=> $_POST['signup_email']), $redirect_url ) );
    }
    add_action('bp_core_signup_user', 'ps_bp_redirect', 100, 1);

    This code will add query parameters in the URL itself, from there try to…[Read more]

  • Profile picture of Nahum

    Nahum replied to the topic How to Submit Registration and Redirect in the forum Creating & Extending 7 years, 4 months ago

    Thanks for the suggestion, I think I tried that and my problem there was getting what the user inputted username and email to add to the url in order to prepopulate the next form. I can’t auto log them in quite yet to get current user info.

    What I ended up doing was this with a plugin:
    <script…[Read more]

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic Problem Profile Visibility Settings in the forum Installing BuddyPress 7 years, 4 months ago

    Hi,

    That is a default profile field and you can not change the visibility of that. But if you will create other profile fields then you will be able to change their visibility easily.

    Thanks

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic Can Buddy Press use Forgot Password Key in the forum How-to & Troubleshooting 7 years, 4 months ago

    Happy New Year to you and your family.

    Wish you the same.

    I think you can go for a custom reset password solution: https://code.tutsplus.com/tutorials/build-a-custom-wordpress-user-flow-part-3-password-reset–cms-23811

    Thanks

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic ARGH — A 'horizontal ellipsis' is preventing display of 'group description' in the forum How-to & Troubleshooting 7 years, 4 months ago

    Hi,

    I have tested the same with one of the default themes twenty-seventeen. Please see: https://prnt.sc/lfu9f6

    As you can see I am on the page where all the groups are listed, I am a member of. So it seems the theme you are using is creating that issue.

    Thanks

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic How to display this type of header? in the forum Creating & Extending 7 years, 4 months ago

    Hi,

    It will need a custom header designing work. There is no such code for that.

    Thanks

  • Profile picture of Prashant Singh

    Prashant Singh replied to the topic How to Submit Registration and Redirect in the forum Creating & Extending 7 years, 4 months ago

    function ps_bp_redirect($user) {
    $redirect_url = 'your_url_here';
    bp_core_redirect($redirect_url);
    }

    add_action('bp_core_signup_user', 'ps_bp_redirect', 100, 1);

    Please try this snippet.

    Thanks

  • Profile picture of Info panduan Dewapoker Terbaru dan Terbaik

    Info panduan Dewapoker Terbaru dan Terbaik's profile was updated 7 years, 4 months ago

    Info panduan Dewapoker Terbaru dan Terbaik

    @dewapokeridp99

    View Profile
  • Profile picture of RajaPkv

    RajaPkv's profile was updated 7 years, 4 months ago

    RajaPkv

    @fitzgerasandra4

    View Profile
  • Profile picture of Joey Lewis

    Joey Lewis's profile was updated 7 years, 4 months ago

    Joey Lewis

    @joeylewis3

    View Profile
  • Load More

WordPress.org bbPress.org BuddyPress.org Matt Blog RSS

GPL Contact Us Privacy Terms of Service X

Skip to toolbar
    • WordPress.org
      • About WordPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • bbPress.org
      • About bbPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • BuddyPress.org
      • About BuddyPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
  • Log in
  • Anonymous
    • AnonymousNot Logged In
    • Register
    • Log In