Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 2,176 through 2,200 (of 7,642 total)
  • Author
    Search Results
  • #244670
    Henry Wright
    Moderator

    Are you logged in? If you visit /registration/ as a logged-in user, then you will be redirected to /members/. Setting your homepage to your registration page will mean you get redirected to /members/ when you visit your homepage (when logged-in).

    DanielEngelhardt
    Participant

    Yes it worked for me, thanks again. Here is the snippet which i am using in my functions.php:

    add_action('bp_core_activated_user', 'bp_custom_registration_role',10 , 3);
    function bp_custom_registration_role($user_id, $key, $user) {
       $userdata = array();
       $userdata['ID'] = $user_id;
       $userdata['role'] = xprofile_get_field_data('Ich bin', $user_id);
       
       if ($userdata['role'] == 'Dienstleister') {
            $userdata['role'] = 'dienstleister';
       }
       elseif ($userdata['role'] == 'Kunde') {
            $userdata['role'] = 'kunde';
       }
       //only allow if user role is my_role
       if (($userdata['role'] == "dienstleister") or ($userdata['role'] == "kunde")) {
            wp_update_user($userdata);
       }
      }
    #244654
    danbp
    Participant
    #244560
    shanebp
    Moderator

    – Is it possible as admin to change their username in the back office?

    No, WordPress does not allow it. Usernames must be unique.

    – Why the dot/period or special characters are allow in the username during the registration? and how i can block this?

    There are various methods to restrict the characters allowed in a username when registering. Here’s one example:
    http://wordpress.stackexchange.com/questions/124697/limit-username-to-specific-characters-a-z-and-0-9

    #244532
    shayeryan
    Participant

    This is a fresh install of BuddyPress, first time user. I set my registration page below but when I try to click on any of the fields it will not allow me to place the cursor. I can tab to the field and fill it out and the registration works fine but this is obviously not an acceptable workflow. Any help would be appreciated!

    http://elegantmosaics.com/registration/

    WP Version: 4.3.1
    Theme: the7.2

    danbp
    Participant

    WordPress is the software behind buddyPress.
    If you need custom roles&capabilities on your site, you can add roles programatically as explained on your mentionned tutorial. If it works, site admin can attribute one of the additionnal role to members, within admin.

    BuddyPress, at this time, handles only member types. A member type is not a role or a capability à la WordPress, but only a way to sort better your members. In other words, a kind of a member category.

    To handle such behave from front-end while registering, you can associate a xprofile field value with an existing WP role. See here for a solution (untested) provided a few month ago.
    https://buddypress.org/support/topic/how-to-assign-a-wp-user-role-based-on-a-registration/#post-232887

    Add snippet to your child theme functions.php or into bp-custom.php and give it a try.

    #244385
    Henry Wright
    Moderator

    There’s something causing the registration form not to submit and that’s likely to be either a rogue plugin, theme or custom code you’ve introduced. The usual troubleshooting steps are to deactivate everything and work forward step-by-step, testing as you go. That’s the only way to determine where the problem has been introduced.

    #244291
    thepofo
    Participant

    Actually that did not resolve it for me. I deactivated all plugins except the ACF (I need it to run the site).

    What did change, instead of jumping to the homepage on submit, it reloads the registration page. But no registration did happen.

    #244275
    Henry Wright
    Moderator

    Try disabling all plugins aside from BuddyPress. Sometimes a rogue plugin can interfere with the registration process.

    #244138
    nilje
    Participant

    No, there is no other plugin which could cause it
    I’ve made a screenshot
    http://www.danielaholl.de/Apublic/Unbenannt-1.jpg
    I think the left side is the WordPress registration and right the one for buddypress.. there are my custom profile fields too.

    #244135
    modemlooper
    Moderator

    BuddyPress and WP do not have two usernames. Is this the BuddyPress registration form or another form by a plugin?

    #244129
    nilje
    Participant

    thanks… thats not really compareable, the double password entering is just for precaution.
    I’ve never seen anywhere to enter my username twice.. And what if they enter two different ones, they don’t know for sure with which one they could login. That’s just odd for everyone who don’t know it’s about WordPress and Buddypress.

    Your link couldn’t help me, the topics are about not using usernames at general, I need it, but not twice. I dont’t trust the Plugin Simplr Registration Form Plus+, sounds good but there are many who had problems with their databases after using it..

    #244120
    nilje
    Participant

    Hi,

    At my registration page I have two required username fields. One for WordPress itself and one for buddypress I think. How can I set to just fill out the one for wordpress and set the same username for buddypress as well? It’s really confusing for the user to set the username twice.

    Thanks!

    #244118

    In reply to: Profile Signature

    danbp
    Participant

    It is standard! At least if you use xprofile component to let your users enter their signature.

    1) Create a new field. Call it Signature and give it a textarea type.
    2) Once this field is edited by a user, during registration or later, the signature appears on his profile.

    3) if you want this field somewhere else, for ex on the profile header, you simply write a function to call this field and hook it into the template you want.

    Ie. Add this to child theme functions.php or bp-custom.php

    function my_signature() {	
    if ( bp_is_active( 'xprofile' ) )
       if ( $signature = xprofile_get_field_data( 'Signature', bp_get_member_user_id() ) ) : // field name; case sensitive				
          echo $signature;	
       endif;
    }
    add_filter( 'bp_before_member_header_meta', 'my_signature' );

    Or to use Henry’s advice
    add_filter( 'bp_after_profile_content', 'my_signature' );

    Reference

    User Extended Profiles

    Displaying Extended Profile Fields on Member Profiles

    danbp
    Participant

    Check the translation file: buddypress_CN.po (with a text editor like Notepad++) and verify that email text are all in plain text. Those strings shouldn’t contain any html entities.

    Read from here for more details about email customization:
    https://buddypress.org/support/topic/customizing-emails-template/
    https://buddypress.org/support/topic/registration-process/

    #244032
    djsteveb
    Participant

    @projectslimited – yeah, welcome to the club! I had one bp site with registration turned off for 18 months.. turned it on to test some thing – hours later – dozens of new “groups” and spam accounts.

    My main site I depend on buddypress humanity as main line of defense.. but also add the plugin “good question” (changing the defaults on these two!)

    I also use “geo ip block” on all wp sites now. (changing some defaults)

    that seems to help 95% – then I got so tired of the manual spammers that I added the apache gep redirect thing from maxmind lite.. and block all visits from Russia, China, Ukraine, and a few others completely.

    Saves a ton of bandwidth and server resources – and makes it easier to find the cdir blocks of US and UK ISPs to block via htaccess (none of my web site visitors are using COLO Crossing Transport to visit my site- so all their cidrs eg:
    23.94.144.0/20
    23.94.144.0 – 23.94.159.255

    blocked…

    I have been messaging with a wordpress plugin author about modding his plugin that pulls info from failed logins and puts them into iptables – suggesting a few mods that can make that info useful to those of us who do not have access to or want to get into iptables modsec stuff – hopefully those suggestions will come into a new version of that plugin later this year.

    with my multi-site setup I use a ‘new blog defaults’ plugin to set any new blogs created to automaticcaly have the noindex setting in wordpress, and noinded nofollow settings from yaost.. so even if one manual spammer gets in and makes blog – it does no good, and does not show up on the radar of the other spammers.

    I recently had to block Japan entirely as I started getting daily spam hits from there.. of course each person’s setup will vary – I can’t block all countries on all my sites, so some sites I set the ip geo block to whitelist just one or two.. on other sites I setup a blacklist to block 20 or so..

    ctuxboy
    Participant

    Hello,

    – I activate the original WP twentyfifteen-theme, and i see no errors in the developer console (Chrome browser)

    Is this an issue? Have more people this?
    Can i adding manually the private button links?

    This are the installed plugins:
    – All In One WP Security
    – Black Studio TinyMCE Widget
    – Bowe Codes
    – BP Registration Options
    – Bp Stickers
    – BuddyPress Members only
    – BuddyPress
    – Child Theme Configurator
    – Contact Form 7
    – Duplicator
    – Events Manager
    – FB like notification for buddypress
    – Loco Translate
    – Page Builder by SiteOrigin
    – Peter’s Login Redirect
    – Really Simple CAPTCHA
    – SiteOrigin Widgets Bundle
    – User Switching (deactivated for the moment!)
    – WP Statistics

    The strange thing is that all the buttons showing correctly in the user profiles when nothing a friend.

    (sorry for my bad english!)

    #243637
    mangelesgcl
    Participant

    Hello

    I want to add a Terms & Conditions checkbox on buddypress signup form. I tried it using: dashboard/users/profile fields ( https://buddypress.org/support/topic/terms-of-agreement-checkbox-for-registration/ ) but I can’t see any changes when I add a new field (It doesn’t matter the kind of field). What am I doing wrong? Buddypress version 2.3.2.1. Theme Mediso.

    Thanks,

    #243545
    danbp
    Participant
    #243489
    danbp
    Participant

    You’re welcome !

    To all readers, Codex reminder when getting 404, missing BP pages, not found errors after setup or upgrade ! 😉

    Settings → BuddyPress → Pages

    Pages are automatically generated for the BuddyPress components you enabled in the components settings using the default slugs based on the name of each component activated. Make sure that activated components have corresponding pages assigned to each in this panel.

    Directories
    Associate a WordPress Page with each BuddyPress component directory.

    • Activity Streams (if activated)
    • User Groups (if activated)
    • Members > this is core and can’t be removed/modified

    Registration

    Associate WordPress Pages with the following BuddyPress Registration pages.

    • Register
    • Activate

    Note: registration is not a BuddyPress component but part of WP core.
    When you allow user registration, you have to add manually these pages.

    danbp
    Participant

    To all readers, Codex reminder when getting 404, missing BP pages, not found errors after setup or upgrade ! 😉

    Settings → BuddyPress → Pages

    Pages are automatically generated for the BuddyPress components you enabled in the components settings using the default slugs based on the name of each component activated. Make sure that activated components have corresponding pages assigned to each in this panel.

    Directories
    Associate a WordPress Page with each BuddyPress component directory.

    • Activity Streams (if activated)
    • User Groups (if activated)
    • Members > this is core and can’t be removed/modified

    Registration

    Associate WordPress Pages with the following BuddyPress Registration pages.

    • Register
    • Activate

    Note: registration is not a BuddyPress component but part of WP core.
    When you allow user registration, you have to add manually these pages.

    #243423
    danbp
    Participant

    No need to be rude. I’m trying to help you by asking questions, that’s all.

    As you use a third party plugin, i suggest you to deactivate it or even, to remove it completely and to test WP+BP only. Don’t know the plugin you mention, but one thing is sure, something is going wrong. On a standart install, handling pending members is generally not a problem.

    WP was updated 48 hours ago to 4.3 and is working flawless with BP2.3.2.1. (i have 6 BP site running on different configuration, without issues). If your issue appeared after this update, it is possible that a plugin is now no more able to work correctly with this new release.

    FYI, BRO is compatible up to: 4.2.4 and was last updated: 2015-7-21. Pretty recent, but who knows where the error comes from ? Have you asked for that issue on the plugin support ? No…

    If you thing it is an issue with BuddyPress, report the bug, describe the way to reproduce by opening a ticket on BuddyPress Trac, the only place where you can expect a fix. If BP devs agree with the issue.

    More about BP bugs on Codex.

    #243422
    DJ9
    Participant

    Yes , they can register separate on both sites. Buddypress isnt working right on either site and use to. Thats the main point with this post, it was working and now it isnt, I really dont see why why this is hard to understand. I am using another plugin to activate my subscribers like i said before but it doesnt let you do bulk in high numbers. It is called, BP registration options. I have 2 databases and the pages are set up individually and buddypress is not working on either like it use to. I guess if I cannot get the proper help with your plugins I could always change it to the ultimate member plugin or something else. Buddypress has an issue right now, at least with bulk activating, was trying to get a simple answer to what is wrong, but it seems your more concerned with not saying anything is wrong with your plugin instead of trying to help fix it.

    #243391
    gametimemedia
    Participant

    I know i can use BuddyPress Registration Groups since i just found it but it’s not a required field. I guess it does what i need but would be nice if it was a required field, even nicer if the group image was there instead of the check box.

    #243378
    muskokee
    Participant

    Sorry, part of the above is not true. I am using bp-custom.php. The only function in there is to disable BP registration.

    //EDIT

    Oh my! I just found this post https://buddypress.org/support/topic/bp-legacy-in-bp-templates/ . Am I supposed to be using the files from bp-legacy as this post suggests? If so, what a terrible name for a folder!

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