Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 1,601 through 1,625 (of 7,641 total)
  • Author
    Search Results
  • #262217
    Venutius
    Moderator

    I think BP Registration Options is what Most people use

    GeekGal
    Participant

    Hi all,
    I’m using the latest BP version along with latest WP. I don’t see an option to hold new registrants until they are approved. Am I missing something? I’ve found this plugin but thinking there is probably a native switch I’m missing somewhere – https://wordpress.org/plugins/bp-registration-options/.

    I just want to approve every user before they have access. Thanks.

    If I have to use a plugin, what is the very best recommended?

    #262071
    Lars Henriksen
    Participant

    +1 on this.

    It would be better to have profile details displayed below and not next to account details to make mobile registration look better.

    Has anyone found a solution to this?

    Thanks,

    Lars

    Bingo Bongo
    Participant

    Hey guys,

    Avada support came back to me & let me know they have no Buddypress styling, so haven’t checked with 2016. It may be Avada-specific.

    I found a couple of other old topics on this, and I guess you’ve got it tracked, but just in case –

    Mobile Registration looks borked, example here http://www.zetaunit.com/forum-register/ (may be tidied up by the time you see it, so screenshot here – .

    Other than that, I think we’re running smooth now ๐Ÿ˜‰

    Thanks for all the work on Buddypress guys. Very cool.

    #262044
    modemlooper
    Moderator

    There are some plugins, do a google search.

    you can also use this code but you will get spam if they can get in without email conformation.

    add_filter( 'bp_registration_needs_activation', '__return_false' );

    #262040
    radahrout
    Participant

    Dears,

    I need to change the content of the buddy press directed forms /pages and i dont know how?

    Im using WMPLS theme and i need to change the activation and registration directed pages.

    Also I need to have the registered customers as confirmed without sending confirmation email, is that doable on Buddypress?

    Thank you
    Rada

    #261921
    Venutius
    Moderator

    BP Registration Options will do that for you.

    #261920
    ico33
    Participant

    Hello Guys!

    I have a WordPress site with Buddypress. User registration is managed by WordPress or Buddypress?

    This is the problem: in my site there is a spammer (not a robot, but a person!) that registers a lot of users and uses them for creating flames. Blocking IP is useless because he has different connections (mobile, etc) and the IP changes always. He create new emails, and makes registrations.

    Now I am quite expert in looking at the emails he uses. So If I could “disable” the automatic registration, and enable each new user manually, it could be ok. I mean: a user makes the registration, but doesn’t receive the email for clicking. He has to wait for me, that I see the “pending” registration and approve them manually.

    Is this possible? Is this the best solution?

    #261863
    tergra
    Participant

    Found the source of the issue. I had put the field (First name (Base)) in another group of fields, because it only makes the registration process longer and doesn’t bring anything valuable to the site. But when yo do so, it breaks the registration process for some reason. It no longers makes the required verifications.. I’m now implementing the solution of changing is_required described here by ModemLooper : https://buddypress.trac.wordpress.org/ticket/5373?cversion=0&cnum_hist=3
    It seems to work, I only have a issue with the css (I put a big div with display none before xprofile fields and I’m closing it at the end, just before the submit button, but it puts the submit button on the right as if the xprofile field was there, weirdly/

    Buddypress should really have that in core as this required Xprofile field is really not user-friendly AT ALL. ๐Ÿ˜‰

    Thanks everyone ! ๐Ÿ™‚

    #261844
    danbp
    Participant

    Where is BP installed ? Where do you try to register a new user ? What is the registration URL ? And give more details about your install please.

    #261839
    danbp
    Participant

    @alliebells15,

    deactivate all plugins but BP and restart BP’s setup

    BP pages should be empty, without any shortcode or template assigned. Once created again, clear eventually the trash, your pages must be unique !

    Once ok, go to permalinks, and choose any option but “default”.

    In BP pages settings, you should have a page for:

    members
    activities
    groups (if you use groups)
    register &
    activation (if you allow user registration)

    Reading the codex will help you to clarify how to proceed.

    Configure BuddyPress

    anthonylawton
    Participant

    I suspect it is because I have a membership plugin – Membermouse (which I really like)

    I get registrations through the MM checkout page – anyone know what the answer is to keep the checkout but to (at the same time) check the whitelist email in the sign up process?

    Thank you ๐Ÿ™‚
    Anthony

    mkricard
    Participant

    Thanks. I tried another piece of code in my bp-custom.php file, and it seemed to do the job perfectly. Now, non-logged in users can’t view any of my BP pages, and they get redirected to my register page:

    function kleo_page_template_redirect()
    {
        //if not logged in and on a bp page except registration or activation
        if( ! is_user_logged_in() && ! bp_is_blog_page() && ! bp_is_activation_page() && ! bp_is_register_page() ) {
            wp_redirect( home_url( '/register/' ) );
            exit();
        }
    }
    add_action( 'template_redirect', 'kleo_page_template_redirect' );
    danbp
    Participant

    @uscore713,

    i’ll try to explain. You’re using WordPress and a plugin called BuddyPRess which add a community dimension to WP.

    Members are the heart of BP. Anything done by the plugin will return something related to members: activities, friendships, dicussion and much more.

    How is this possible ?
    Because WP let you register members separately. To do this, WP ask for a username(pseudonym), a password and a valid email.

    You cannot avoid this, whatever plugin you use. It is how it works.

    Now, we have 2 different question in this topic.

    1) how to restrict access to profile settings ?
    2) do we need a plugin for that ?

    About point 1
    WordPress was designed to be a blog builder. A CMS with one blog author who was mainly also the site
    owner/builder… This changed with the years and today, you can handle a multiauthor blog.

    When you install BP, you can still handle a multiauthor blog (or even blogs) and also a big community of different users, whith different (wp) roles.

    What hasn’t changed is the way WP handles authors(or members): from within the dashboard, whatever the role.

    When BP is activated, and if you use the xprofile component, you can build a registration form who is added to the original wp registration form. This form is then available on each user profile and can be modified from there.

    To restrict user access to wp-admin, you can use different technique. This depends of your coding knowledge or working philosophy, with custom code or applying some plugin solution.

    This is independant of BuddyPress and out of the scope of this forum. Just remember that BP let you access to your credentials from front-end.

    About point 2
    – in theory, you don’t need a plugin
    – you always need to read about a plugin before using it.
    For example, the workaround mentionned in this topic about the usage of Profile Builder.
    – here a recent tutorial – for beginners – you may found more advanced advice by googling about “wordpress restrict dashbord access”.

    When you read the teaser on that plugin page, you already should have understand that you don’t need it !
    Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes.

    Astonishment ! BuddyPress offers exactly the same options (among others).

    What ever plugin you use, the regiter process of WordPress won’t change, and the user list or the user data will always be at the same place. What plugins do (most of them), is to modify the appearance of that process.

    What you can also do is to remove all WP related items from the toolbar, if you use it. This is widely documented and discussed on WP’s support and codex. It’s WP territory and has nothing to do with the fact you use BuddyPress.

    Admitting you found a solution for the backend, you need to use BP’s login widget. From there, users can enter the site. And if they loosed their password, they can ask for a new one from there (usually the sidebar, on front-end).

    #261775
    Venutius
    Moderator

    There’s a few different ways you could go about this, there’s a few privacy plugins that will hide different aspect of the site from public view. One is BP Registration Options, this installs new member moderation (so you can choose who to allow on you site) and BuddyPress privacy, where the BuddyPress pages are all private, but the WordPress pages and posts are still public.

    If that’s not private enough for you then there’s BP Simple Private which allows you to hide all aspects of your site apart from the homepage.

    #261774
    mthant
    Participant

    I would like to create a private community website for selected individuals. Currently, WordPress registration has email and password. But that will allow any person to join. If the website wants to limit to certain individuals e.g. alumni of a school or a neighborhood community, we should have additional fields that can filter out unwanted individuals by creating certain criteria.
    How can we do that?
    Thanks,

    #261756
    danbp
    Participant

    Hi,

    BuddyPress use templates to show his stuff.
    The registration is part of WP and BP’s xprofile component add only some additionnal fields to the original register form.

    If you open a template file you will see a lot of code and many lines starting by do_action( ‘something’ );

    These files are all stored in bp-templates/bp-legacy/buddypress/

    Now you have already the where and the what. here’s the how.

    To show some text on the register page you have two options:
    1) altering the whole template file bp-templates/bp-legacy/buddypress/members/register.php
    2) add what you want by using an action hook

    The second method is the fasted and the easiest. You just need to write a function and you’re done.

    
    function valeriemanne() {
       echo 'Here i am !';
    }
    add_action( 'bp_before_register_page', 'valeriemanne' );

    Add this to your child theme functions.php file or into bp-custom.php

    WordPress codex references
    add_action
    Child theme

    danbp
    Participant

    Hi,

    Is there any easier way

    this question may be answered if you provide first the complicated way !

    if you want to use BuddyPress, you need a page for each active component. These page are there essentially for internal purpose and are working as placeholder or if you prefer, as permalink targets. Even if you use custom registration or pwd handling, you need them. What hapen in the template (ie. register.php) is to you, but you need to use a page slug.

    Members is mandatory and is the only page you shouldn’t never delete.

    #261753
    vm_design
    Participant

    Buddypress has a lot of potential, but I am very surprised there aren’t shortcodes for things like the registration page. Can anyone suggest how to get a shortcode for the registration page? I need to hage some text above the registration form.

    I’m not experienced with php, but if anyone has a suggestion – please share!

    Archie Makuwa
    Participant

    Hi guys,

    Is there any easier way to remove the BuddyPress Components dashboard notifications?
    โ€“ The following active BuddyPress Components do not have associated WordPress Pages: Members, User Groups, Activate, Register. Repair

    I simply do not wish to have the custom pages enabled. Registrations are handled manually and the password reset page is all custom. Any pointing in the right direction will be highly appreciated.

    hotloverspassion
    Participant

    Hi guys,

    I am wondering, whether someone will be able to help.

    I donโ€™t like to have two name fields in my registration page ( “username” from wordpress and “name” from buddypress ) – see https://codex.buddypress.org/getting-started/guides/modifying-the-registration-form/, but unfortunately both names are used throughout the site so I canโ€™t really delete any of them either. The only solution I was thinking about would be to add a code to functions to make both input fields to match upon registration โ€“ something similar to a confirm email field code I found here http://vibethemes.com/documentation/wplms/knowledge-base/add-confirm-email-field-in-register-page/

    I have tried to play with a code, but itโ€™s like reading Chinese for me.

    Any ideas?

    Thanks!

    #261641
    danbp
    Participant

    Hi @kaosone1975,

    add those snippets to bp-custom.php and give a try:

    function bpfr_redirect() {
    
    	if ( bp_is_current_component( 'register' ) ) {
    		wp_redirect( get_option('siteurl') . '/wp-login.php?action=register' );
    	} 
    
    }
    add_filter('get_header','bpfr_redirect', 1 );
    
    function my_disable_bp_registration() {
    	remove_action( 'bp_init',    'bp_core_wpsignup_redirect' );
    	remove_action( 'bp_screens', 'bp_core_screen_signup' );
    }
    add_action( 'bp_loaded', 'my_disable_bp_registration' );
    #261638
    danbp
    Participant

    Hi,

    You have to install BP correctly on WordPress as very first.
    This means particulary that you use WordPress with one of default’s Twenty theme.
    – install BuddyPress
    – activate the component you want to use
    – ensure that each component has his own page
    – pretty permalinks must be activated too.

    To get a proper register page, allow user registration in WP settings and add manually, if not created automatically, a “register” page to BP.

    NOTE: BP pages are not usual WP pages. They are only placeholder (a unique ID in the wp ecosystem) where BP will show dynamic content. These page must be unique and shouldn’t be asigned to any template or model. Give them a title and you’re done.

    once WP+BP work correctly together and you can access to the register page without trouble, you can be sure that this couple is definetly OK.

    No it’s time to activate a custom theme if you use one. An if something gooes wrong at this stage you’re sure it’s the new theme who is the culprit.

    And if the new theme is working correctly with WP+BP, you can install plugins.

    And again, WP+BP+Theme = OK, but what about the plugin ?

    Easy to understand, easy to build, very annoying to write this for the 589 000 time, but still the only way to install BP.

    On your side, you need to follow these steps, but also to read the documentation from codex and of course, from any additionnal plugin you want to use !

    That said, be warned that we can’t assist you on this forum with third party premium theme or plugins as we have no free access to their code.

    #261635
    ramano15
    Participant

    Hi there!

    Im using LMS theme made by designthemes: https://themeforest.net/item/lms-learning-management-system-education-lms-wordpress-theme/7867581

    My website: lawpreneur.net

    Latest version wordpress 4.6.

    I have spend my day why my buddypress isnt showing a registration page. The theme processes buddypress slightly different than the normal themes. They ask you to make an login&registration page with a login-template. With that being done, the registration form doesnt show op.

    So i tried some of the solutions here:
    – reinstalling
    – unplugging every plugin
    – putting up the set up as asked for by buddypress (member pages, registration pages etc.) and linking them in the buddpress-option menu.

    I am getting kind of desperate here, because I have run out of option.

    Thank you for repying

    #261618
    Venutius
    Moderator

    If I go to the link that you provided I do not get a register page:
    http://slipbuddy.codeprimer.net/Register/
    However if I click on the register link I get a register page:

    Register

    Seems like there two pages on your site, Register and register, register is linked to the registration page, not Register.

Viewing 25 results - 1,601 through 1,625 (of 7,641 total)
Skip to toolbar