Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 651 through 675 (of 7,641 total)
  • Author
    Search Results
  • Wama Software
    Participant

    I want to make a custom page where user can edit his profile and save the profile same as edit profile page of buddypress,

    my idea here is to after user registration, when user login and if the required field is not filled then user will see a profile custom edit page with all the profile field as editable field, and
    Most important part is how to save those field values like images/ date and all

    #309616
    luckygenovl
    Participant

    Hi,

    the default registration page is only refreshing after data submission from a user. Profile is not created and no email is sent. You can see the issue fro the register page here
    http://www.globalregenerative.academy/sample/

    Please let me know how i can fix this. It was not like this a couple of days ago.

    #309594
    supercavie
    Participant

    Hello Everyone,

    I use signup fields from buddypress on my registration site.

    I have a dropdown box field that I can with php populate data onto it with the use of the action xprofile_insert_field() which with an array can add data to the dropdown box by its parent id.

    I would like to do the exact opposite, i.e., having a parent id (dropdown box) delete data from it, but I can’t seem to find the proper action to it. The xprofile_delete_field only takes an id and would delete the entire dropdown box…

    Any ideas?

    #309476
    markcummins
    Participant

    I think you can also disable the generated password on the registration page for the nouveau theme by adding the following code to functions.php

    add_action( 'bp_before_register_page', 'bp_page_signup_disable_random_password');
    function bp_page_signup_disable_random_password(){
      add_filter( 'random_password', '__return_empty_string' );
    }
    #309468
    supercavie
    Participant

    Hello,

    It seems that if you have a field with too many data, buddypress kills the connection and doesn’t allow the edit.

    I have a dropdown box field for the registration done with buddypress.

    I have one field which is a dropdown box with around 300 option values. If I try to edit (change/add/remove) this field with data everything runs properly.

    I have another field which is also a dropdown box with around 4000 option values. If I try to edit (change/add/remove) this field with data after clicking on the “Update” button, I get the message “The link you have followed has expired” and nothing is updated.

    It seems that buddypress can’t handle so many data…

    Anyone can help?

    Thanks!

    #309450
    Renato Alves
    Moderator

    I’d confirm if your fields validation is front-end or back-end. Also, check the pages that are open to registration and the BP REST API, if any plugin is opening up for signups.

    #309445
    philliprf
    Participant

    I have a social media site I’m working on using Buddypress.

    Spam accounts are signing up without filling in any of the required fields, and I don’t understand how. WordPress registration/login is disabled, all done through a 3rd party plugin (Youzer). When I go through the registration form myself, there’s no way to skip entering information such as city, country etc. All they are signing up with is a username, email and password.

    How can I stop this? They’re messing up the layout of the members area, and just sending spam messages to actual members.

    #309439
    supercavie
    Participant

    Hello,

    We have a wordpress site.

    If on the menu we go to “Utilizadores->Profile Fields” we see a list of fields used on the registration form.

    If we try to edit the field “Farmácia” after changing anything and clicking on “Update” it fails with the following message:

    “The link you followed has expired”

    “A ligação que seguiu já expirou.” (in Portuguese)

    From what we searched online, normally this kind of error is due to settings on the server, like memory_limit

    Can you please help?

    #309438
    janjuha
    Participant

    I downloaded the plugin (BuddyPress) and configured it with my under construction website. In the end, it did not create Registration Page/Form although the REGISTER item did appear in the Menu of the site. Kindly guide me if I have missed something in the process. I am creating at local host of Flywheel (WP version 5.3) and the theme is Colibiri free version.
    Thanks.

    #309357
    lucmarweb
    Participant

    Hello
    I would like to change the default email (without changing my email admin) notifications when registering to buddypress
    And add a copy email can someone help me
    Luke

    aldinho77
    Participant

    I have created a user profile field (type: Multi-Line text Area) that is required.
    I want the user to fill it in the registration form. All good so far.

    If the user does not fill the MultiLine textArea the field is not indicated as Required BUT instead, the page reloads (at least the form is not submitted). This is a very bad user experience as the user doesn’t know why the form is not submitted.

    Anybody faced that before?
    Thanks

    supercavie
    Participant

    Hello,

    Probably this has been asked before, and probably there is a very simple solution that I’m aware of, but I have the following requirement. I have two fields on my registration, field “Function” as mandatory and field “WorkID Number” as optional:

    Field “Function” required dropdown box with the following options:
    “”
    “Unemployed”
    “Student”
    “Pharmaceutic”

    Field “WorkID Number” as a text field as optional.

    I would like when a user is on the registration and chooses the value “Pharmaceutic” under the “Function” field the “WorkID Number” changes to mandatory, but only with that value, otherwise (for values “”, “Unemployed” and “Student”) it remains as an optional one.

    Is this even possible? I tried to search everywhere but have not idea…

    Thanks.

    #309035
    manucomanuco
    Participant

    Hi, I’m trying to add a query in the registration process of a new user. I want to create a new usermeta value for the new user named user_type with value ‘registered’. The problem is that I don’t know where I have to include this query, on the buddypress register, on the wordpress register or on my functions.php? Hope you help me

    #308984
    jennifersanchez
    Participant

    Hi! how i can do to disable the activation user of BP for login to the profile without activating and without approve the email? i saw many post of it but it was all older and it isnt work now.

    i tried this code without lucky

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

    Thanks!!

    worlddude
    Participant

    Hello!
    (I use Youzer but it based on a BuddyPress and their support are useless.)
    I already restrict access for all users to a WP dashboard profile (only frontend are accessible). How also restrict users with lowest auto-set on registration role “Subscriber” to access their Youzer/BuddyPress profiles and groups pages etc? (Best of all at low-level via functions.php etc to avoid any hacking.) So user will able to access all WP frontend activity functionality like posts comments, in-post voting, WooC products purchase, etc, but without access to a dashboard and to Yz/BP profiles and social network activity.

    stevecurrey
    Participant

    Hi all,

    Can anyone tell me how I go about disabling the auto generation of the strong password on the registration form?

    The users of my site are not very tech savvy and they tend to register without taking note of the password then have to reset it.

    I get daily complaints…

    The password strength notices are fine so that isn’t a problem.

    Many thanks in advance!

    Stephen.

    #308919
    vsimm63
    Participant

    How did you solve the registration problem. Please share your advise. I’m seeing lots of emails from people not being able to register new members and no reply from Buddy Press support.

    evo252
    Participant

    Hi!

    I tried everything. I have all these plugins enabled on my BP Install:
    Akismet Anti-Spam
    Anti-Spam by CleanTalk
    BuddyPress Auto Activate Autologin Redirect To Profile On Signup : I need to allow my user to use my network like every social network without waiting for any moderation and approbation.
    No CAPTCHA reCAPTCHA
    Stop Spammers

    Everyday, I have a lot of spam registration who send a lot of messages to all my members, so my network is not working now, my members cannot use it because they are all receiving a lot of e-mail notifications because of spam.

    all messages are all the same:
    “Hi dear,
    how are you my dear I’m from UK, and
    i have something important to disclose with you
    if you don’t mind please contact me, through my private aminatadennis0@gmail.com
    so that i can explain myself to you
    Sincerely.”

    It’s very very annoying.

    Is there a solution without approving each member? Because we cannot approve hundred and hundred members each day, it’s impossible…

    Thanks in advance for your help !

    #308779

    Using SweatDate
    BP Profile Search Version 5.2.1
    BP Registration OptionsVersion 4.3.7
    NOt sure where to find WP version – but started on the site around June

    I am not a programmer – proofing the website and I noticed that in edit mode my profile questions are visable. When you go to view mode alot of my questions are truncated – why o why did they do this?
    Any way..I need the questions to show up so the answers make sense.

    evillizard
    Participant

    I really appreciate buddypress and all the dedication goin into it..

    but To be honest.. I dont know why that password control stuff is included in the new version.. My site users are complaining bitterly. The old password field was jst fine the way it was. … What i would like to see instead is buddypress allowing registration with phone numbers and SMS instead of email… I really dont know why the wrong thing is always included in updates.. At least there should have been an option where the admin would be able to choose whether or NOT they want the password control..

    ..

    I would give @imath suggestion a try nonetheless.

    #308714

    I have the latest wordpress installation with latest 2019 theme plus latest version of buddypress. I have set register on general settings, got buddypress pages created automatically upon registration. Did the page settings. Got only buddypress plugin activated but for some reason when I test register after logout, I cannot register people successful even though I imput the data needed to register. The page will not even redirect to activate. It stays the same with no registration happening after sign up.

    I been reading other forum topics on registration. I tried changing themes, tried add www. on my URL, tried re-installation of wordpress and buddypress, removed all plugins except buddypress but for some reason I cannot figure out what I am doing wrong because I still cannot register new members/Users.

    I been watching youtube videos on buddypress and I notice that on options the core buddypress files do not have a check box on the version I use. Even when I try to select everything on buddypress option so that all 10 are selected I still get cannot get registration of new members from register page.

    Please help me I am a novice on buddypress. เวกัส168

    #308710
    pixieblitz
    Participant

    I thought Askimet was just for comments – can you also configure it for private messages? I do have it set up and running right now, along with Wordfence, a reCaptcha V2 on registration form (and for bbPress), and a BuddyPress Private Message Rate Limiter.

    Right now I’m using these plugins:
    – Askimet
    – Wordfence
    – Advanced noCaptcha & invisible Captcha (On registration form)
    – Anti-Spam by CleanTalk
    – BuddyPress Private Message Rate Limiter

    It helps, but apparently not enough – just had a user sign up last night, receive a spam message, and request to have their account deleted this morning. It’s obviously frustrating, so if Askimet could be doing something extra that I just haven’t configured it for, that would be great…

    But I’m not sure how it could even successfully flag the messages based on content? Some are very bland “Hi Dear, I like you profile and would love to talk, please contact me privately via e-mail at xxxxxxxx ” Which don’t seem that different from legitimate messages, except that they’re being sent out en masse from users with profiles that say they’re in US, but with IP’s in Africa, etc.

    Does anyone know if these same bots would also send out mass friend requests? I remember seeing a mention of restricting private messaging to friends, which might be my next step… But I don’t want to implement an additional hurdle for users if the bots would also just abuse that. 🙁

    Sorry for the long post, but thanks for any help!

    #308707
    visitatore
    Participant

    About the question I previously asked, (to be able to hide the User Name needed to log in) I decided to focus on the transparency of the information and make known during registration that the User Name (unlike the email) will still be visible in different situations and for greater security against possible brute force attacks to focus on password complexity.
    Now, however, after testing various possibilities, I realized that (rightly) the Buddypress system recognizes and does not allow two identical Usernames, BUT ALLOWS TWO THE SAME NICKNAMES.
    How to prevent users from choosing a nickname already present in another user?
    Is there a plugin or a system? I believe that within a community it is not a minor problem, because in my opinion, it should not be possible for two users to appear with the same nickname.
    Thank you for a very welcome and expected response.
    Claudio

    #308687
    hustlesmarter
    Participant

    After a new user registers and a payment is made the user is not getting directed to the ‘confirmation of purchase page’. Instead they are receiving an error. The user registration is going through though. We tested it our self in a live environment with a valid credit card, charge for $1 with promo code. I have attached a screen shot of the error.

    I am not sure if it is a Paid MemberPro or BuddyPress error, I will be submitting a ticket to them also to see if they have any insight.

    View post on imgur.com

    View post on imgur.com

    WordPress 5.2.3
    BuddyPress 5.0.0
    BuddyPress for Learndash 1.2.8

    Members.hustlesmarter.co

Viewing 25 results - 651 through 675 (of 7,641 total)
Skip to toolbar