Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 2,301 through 2,325 (of 7,642 total)
  • Author
    Search Results
  • #238747
    RecDC
    Participant

    Thanks a bunch @danbp. Now off to figuring out how to get past the “user registration not allowed” issue and then I’ll good to go.

    Thanks again. 🙂

    #238611
    matrixd
    Participant

    Thanks for response.
    I know about group roles.
    I probably use a PUBLIC group but I need to control which become a member for my group!
    If I use PUBLIC group is there any plugin to control user registration to that group?

    #238585
    aaronkine
    Participant

    Great! I will pass this info onto the developer and see what they say. I’ll let you know how it goes.

    just for more reference… here is are the Two Support Topics i started with the developer.
    https://wedevs.com/support/topic/registration-form-post-to-bp-activity-new-member/

    Here is the ongoing ticket, Started a New Topic after the Buddypress update prevented it from working again.
    https://wedevs.com/support/topic/buddypress-activity-feed-not-showing-new-members-wpuf-registration-form/

    #238582
    Mathieu Viet
    Moderator

    Well, i think they are complicating their task.

    It seems to me that to be sure BuddyPress will do all what it needs to do, you simply need to use :

    do_action( 'bp_core_activated_user', $user_id );

    eg:

    function on_user_registration( $user_id, $userdata, $form_id ) {
           $this->update_user_data( $user_id, $form_id );
           do_action( 'bp_core_activated_user', $user_id );
    }

    Because we hook to this action to :
    – clear the member count cache
    – create the ‘new_member’ activity
    – Sync WP/BP profile if the xProfile component is active

    If that doesn’t fix the issue. A BuddyPress plugin should always launch itself hooking ‘bp_include’ to be sure every active BuddyPress parts are loaded.

    So instead of add_action( 'plugins_loaded', 'wpuf_bp_init' );
    the plugin developer can try add_action( 'bp_include', 'wpuf_bp_init' );

    #238530
    shanebp
    Moderator

    You really should ask the plugin authors this question using their support forum:
    https://wordpress.org/support/plugin/bp-registration-options

    I’ve never used their plugin, but do you have ‘moderation’ turned on?
    From their readme file:

    * Hide “Person became a registered member” from activity stream if moderation is turned on until person is approved.

    This will prevent new registrations from showing in site activity, regardless of whether you’re using their plugin… but maybe you need something else?
    remove_action( 'bp_core_activated_user', 'bp_core_new_user_activity' );

    #238428
    thunderbastard
    Participant

    OK, I just created both the “Register” and “Activate” pages in WP and left them both blank.

    I pointed to both of those pages in BP (see image above).

    Registration now apparently works.

    Thanks for your help, @danbp.

    #238327
    Marcella
    Participant

    Yeah, also make sure you have registration enabled in wp-admin/discussion I think.

    #238308
    imakerin
    Participant

    Hello!

    While i register new user from buddypress after click complete registration its make error as below
    Fatal error: Cannot redeclare class phpmailerException

    I reinstalled it but error not gone so please help me for that

    thank you

    #238264
    danbp
    Participant

    Have you assigned a page to “registration” ?
    Again: each active BP component should have his own page.

    #238262
    fugu78
    Participant

    Ok sorry, i hadnt set up permalinks. The register no longer goes to an internal error page but it goes to a blank page in the website now? Should i see a registration form?

    #238217
    Henry Wright
    Moderator
    #238171
    Henry Wright
    Moderator

    On the registration page, the password shows a strength meter from weak to strong. However, I have had a few testers mention that no matter what password they use the meter always says ‘Weak’

    This is definitely a problem. As your testers provide more obscure passwords, the meter should start to increase from weak to strong

    #238156
    Henry Wright
    Moderator

    Hi @leanneoleary

    Which theme are you using and have you customised the registration page in any way?

    Glenn
    Participant

    was just looking at that one, thanks very much. not quite what i wanted, so I just changed the Checkboxes to Radio buttons in the BP Registration Groups plugin. guess that’ll work…

    #238103
    juliantrueflynn
    Participant

    Yes to the first, no to the 2nd — to be direct, not sure you’re following…

    You just gave steps for overall spam reduction (which, thank you), what I’m referring to is a problem that occurred from the custom registration page. I’m talking in the matter of an hour I went from no spam to lots of spam because of the custom registration page which code I gave above. What would cause that and how can I fix it?

    Why would this custom page cause the issues and why would the Honeypot plugin you gave not fix it or my old code — it’s doing the same thing I had before that worked perfectly? I could remove the custom registration page and the spam would stop, but I rather keep it though since I don’t want the default registration page.

    #238075
    juliantrueflynn
    Participant

    Hm, so I added that plugin first to see if that would do anything. The spam requests are still very high (user spam sign-ups). Again, I’m just comparing this to before I did the new custom registration page – the code I put above in codeshare.io.

    #238018
    Antipole
    Participant

    I have a solution for this – although not particularly neat.

    I took a copy of the BuddyPress Core Component Widgets and changed all occurrences of bp_core_register_widgets to, in my case, bp_ovni_core_register_widgets, and placed it in the bp-custom.php file. This gave me a new widget that I could place in the side bar instead of the standard (BuddyPress) Log In. This change seems necessary to avoid a re-registration error.

    I then edited the action after <?php if ( bp_get_signup_allowed() ) : ?> to go to my information page instead of the register page. From that page I link to my actual registration page, where the register form is displayed.

    It all seems to work for me.

    #237882
    Dani-Girl
    Participant

    Hi Shane,

    I’m not seeing any of the suggested puglins ( Optional Email or Registration Plus Redux as they are the only 2 that meet my criteria) showing up in the Buddypress registration process.

    Since we have to assing buddypress registration pages, only buddypress’s fields are showing.

    If i deactivate buddy press and use the wplogin registration procedure, then either plugin works fine.

    what can I do to change it so that when buddypress is active and using its registration page, that either plugin’s options are showing up?

    #237876
    shanebp
    Moderator

    The email requirement is a WP requirement.

    There are various code snippets and plugins to get around this requirement – whether creating users only thru the Dashboard or through open registration:

    https://www.google.com/?gws_rd=ssl#q=wordpress+registration+email+optional

    #237865
    danbp
    Participant

    @leanneoleary,

    BuddyPress doesn’t handle the Media Library.
    BuddyPress doesn’t handle registration.

    It’s a bad practice to allow users to upload something to your site until they’re not fully registered. When a user register, WP considers this new account as pending. As long as the user hasn’t activate his account with the activation key, he can only visit the site.

    As you installed BuddyPress, i suggest you use your site à la BuddyPress.
    If you want your members be able to upload files, use BuddyDrive. Each user can upload files from within his profile page and can share them on different levels (public, private, friends only). And much better as the Media Library default behave, each document belong to his user. BuddyDrive attributes a folder to each user who upload a document.

    This is much simplier, well integrated and efficient in a members community as strugling with custom code (and potential errors and security issues).

    #237847

    In reply to: Warning of Buddypress

    rohi222
    Participant

    I haven’t got the answer of my initial query of <b>Warning</b>: strstr(): Empty needle in <b>../wp-content/plugins/buddypress/bp-core/bp-core-filters.php</b> on line <b>641</b><br />

    Please help me out with this.

    As far as the register link is concerned it looks the same as it has been shown on the demo when I activate the admin bar for non-logged in user it is having login and registration option out of which only login works and clicking on register link doesn’t have any effect.

    #237792
    modemlooper
    Moderator

    is this site already active with users? You might need to reinstall everything fresh.

    Read this thread, its probably the same issue, has some suggestions. https://buddypress.org/support/topic/new-user-registration-problem-invalid-activation-key/

    #237756
    danbp
    Participant

    You said first:
    I would like to create a page for user registration and another page for editing the profile with more options.

    This is a resume of how BP already works.
    The registration page can be extended (BP xprofile component) and user can fill out these additionnal fields from within their profile page.

    Please take a look on Codex, before reinventing the wheel.

    Configure BuddyPress

    User Extended Profiles

    #237730
    Antipole
    Participant

    @henrywright – thank you for responding

    I set up a bp-custom.php file and am able to redirect as you suggest.

    The condition I am using is
    if ( bp_is_register_page()) {

    This works in that any attempt to land on the register page gets redirected to my own pre-registration information page. But when I follow my ‘go ahead and register’ link, I get redirected back to my pre-registration information page. Since the re-direction happens as the registration page is about to load, I do not see how to get to registration when I need to.

    I really need to divert the BP register links without stopping me going direct to the register page when the user is ready.

    Any further advice would be much appreciated.

    Henry Wright
    Moderator

    You just need to put some validation on the registration form. So, if a user decides to enter a looooooong username, then an error is displayed on screen letting the user know there’s a max length to that particular field.

Viewing 25 results - 2,301 through 2,325 (of 7,642 total)
Skip to toolbar