Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 1,851 through 1,875 (of 7,641 total)
  • Author
    Search Results
  • #255762
    pulidomate
    Participant

    It is not necessary teachers to be registered on the website. Only to receive an email to confirm that the student belongs to his college.

    I would like to do this: Student registres – send an email to the adressinserted by the student to registration form – approve the student with a link by this mail – student receives and email with the approvation.

    #255761
    danbp
    Participant

    Hi @pulidomate,

    By default, it’s not possible. But you can try to code it.

    That said, registering users is reserved to site admin or editors. So far i understand your question, you’re talking about group admins (admins = teachers)and member types (teachers and students).

    Registration and user management is a core thing for users with WP roles/capabilities. It is not the same thing as Teachers and Students within BuddyPress.

    Group admins are, by default, users with a WP role of subscribers. Same thing for students. BP distinguish those users inside a group only, but for WP they still emain as “subscribers”.

    May be you can use a plugin, but i haven’t tested it. Try:
    https://wordpress.org/plugins/new-user-approve/

    #255758
    pulidomate
    Participant

    Hi!

    I would like admins (teachers) approve users (students) receiving an email when students send registration form (and must fill a teachers’ email). Is that possible?

    #255638

    In reply to: Confirmation Email

    David Cavins
    Keymaster

    I’m not sure what behavior you’re aiming for, but this snippet will disable the confirmation email and log the user in automatically upon successful registration.

    <?php 
    add_action( 'bp_core_signup_user', array( $this, 'disable_validation_of_new_users' ) );
    add_filter( 'bp_registration_needs_activation', '__return_false' );
    add_filter( 'bp_core_signup_send_activation_key', '__return_false' );
    
    function disable_validation_of_new_users( $user_id ) {
    
    	// Get the user's activation key for BP. This is the activation_key in user_meta, not the key in the user table.
    	$user_key = get_user_meta( $user_id, 'activation_key', TRUE );
    
    	// Activate the signup
    	$awuser = apply_filters( 'bp_core_activate_account', bp_core_activate_signup( $user_key ) );
    
    	// Automatically log the user in.
    	// Thanks to Justin Klein's  wp-fb-autoconnect plugin for the basic code to login automatically
    	$user_info = get_userdata($user_id);
    	wp_set_auth_cookie($user_id);
    
    	do_action( 'wp_signon', $user_info->user_login );
    
    	bp_core_add_message( __( 'Your account is now active!', 'my-plugin-slug' ) );
    
    	buddypress()->activation_complete = true;
    }
    #255632

    Topic: Confirmation Email

    in group forum Requests & Feedback
    Dono12
    Participant

    I’m using Cymi User Extra Field, when you enable email confirmation the user gets the Buddypress email template
    with the confirmation link. when the user clicks the link it takes them to the confirmation page of the site prompting them
    to login with username and password. Problem is the user name and password doesnt work. The user gets created because they
    are visible in the users list. How can I fix this problem.
    I’ve disabled the Buddypress sign up for the default WordPress using: BP CUSTOM

    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' );
    add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page");
        function firmasite_redirect_bp_signup_page($page ){
            return bp_get_root_domain() . '/wp-login.php?action=register'; 
     }

    and I found this code in a Buddpress Forum:

    https://buddypress.trac.wordpress.org/ticket/3443

    // Change the text on the signup page

    add_filter( 'bp_registration_needs_activation', '__return_false' );
    
    function my_disable_activation( $user, $user_email, $key, $meta = '' ) {
    	// Activate the user
    	bp_core_activate_signup( $key );
    
    	// Return false so no email sent
    	return false;
    }
    add_filter( 'wpmu_signup_user_notification', 'my_disable_activation', 10, 4 );
    
    

    I tried it with the hope that the key would be disabled and the key fired by WordPress would take over but it still didnt work.

    I really don’t care who fires the key I just want the user to be able to login after click the key in their email.

    ekko848
    Participant

    I was messing with this a few weeks ago and thought I figured this out.
    Have the following code in bp-custom.php

    function set_update_field( $field_value ) {
    	$bp_this_field_name = bp_get_the_profile_field_name();
    	// field name (case sensitive)
    	if( $bp_this_field_name == 'Update Page' ) {
    		$field_value = strip_tags( $field_value );
    $field_value = '<form id="frm" method="post"  action="?update_post"><input type="submit" value="Update Artist Page" id="submit" class="update-page" /></form>';
    	}
    	return $field_value;
    }
    add_filter( 'bp_get_the_profile_field_value','set_update_field');

    This should automatically add the following html to each users field called ‘Update Page’ : <form id="frm" method="post" action="?update_post"><input type="submit" value="Update Artist Page" id="submit" class="update-page" /></form>

    While testing this a few weeks ago, it was working perfectly. Had a form/button of the html in user profiles.
    Now, I come back, and on new user registrations this is not showing up anymore.. the field ‘Update Page’ is just simply blank.

    I do not think there was any serverside issues that affected this, but I could be wrong. Anyone have any idea on why this no longer works?

    #255578
    jangolin
    Participant

    Tried to deactivate Loco Translate but no change

    Strange thing is that the registration form show my kanguage when logged in but if you are not logged it shows english in the register form

    Is it possible for you to take a look if I send you the login details

    #255501
    bogski
    Participant

    Event Espresso uses the WP login/registration, but they also check and locks a lot of the functions in wp-login.php before they can be called. This has only been recently, but i think it was done to enable users to go through the registration process without leaving the event checkout page. Before recent, when signing up for a new account and event, you would have to leave the page to activate your account and then start the process of ordering again. not ideal really.

    Its not perfect in all honesty. I think il try some of the other options out on my local server see what they work like. Although i wont be using them on the website in question as we have already purchased the license for our current system. And modified it now.

    Phil

    #255500
    sharmavishal
    Participant

    In events organizer and events manager they dont have separate login/registration …they only use the BP login/registration

    #255499
    bogski
    Participant

    It does indeed. There are a few development teams that specialise in both pieces of software. It is pretty good for it out of the box but once you start getting specific with your events and user management you need some custom code.

    We have a small chunk of code that will grab new users, work out which event they have signed up for and insert them into 2 BuddyPress groups based on the location of the event they have signed up for.

    Im not a PHP developer though so im not too sure of the exact details of how it works together.

    To be honest though, i never had chance to look into alternatives to either Event Espresso or BuddyPress. The website and plugins were already installed when i started working on the project. Most of what i have learnt about them both so far has been trial, error, headbutt keyboard and repeat.

    I have worked out though that it is definitely an issue with BuddyPress and EE (after all that). It seems the BuddyPress login and registration takes precedence over the Event Espresso one.

    It also seems to be creating new users as moderators as well. But thats a different story and isnt a BuddyyPress issue.

    PhilB

    bogski
    Participant

    Hello,

    I have a website online at the moment that uses BuddyPress to look after membership. The website also uses Event Espresso to manage the events sold through the website.

    One of the big problems was new users would be taken away from the checkout pages after registration. An update to the EE system changed this so they would be able to carry on as normal. which was great.

    However it seems now that when i turn BuddyPress back on in the Dashboard, the registration part fails and just defaults back to the original registration form, which then takes the users away from the checkout. So i was wandering, how does the BuddyPress login work? does it use the default wp-login.php and register.php? or does it use its own login scripts? I can appreciate this is quite a specific issue so im looking more for guidance on possible causes instead of an all out solution. I mainly need to work out if it is the BuddyPress side of things or the Event Espresso side of things that is breaking. SO if anyone could help trouble shoot the BuddyPress side of things it would be much appreciated.

    Phil

    #255361

    Topic: spam users

    in group forum Installing BuddyPress
    v!per
    Participant

    i tried using setting –> general –> and disable the Anyone can register option in WORDPRESS .

    doing this help me control the spam users but than i thought how to do the registration ? Can anyone help please here is the website now currently (Anyone can register) is disabled.

    thanks

    AlessandraT
    Participant

    Hello,

    The e-mail that is sent upon registration contains an activation url that points to a page with a 404 error. I am using the u-design theme and the problem persists with all plugins deactivated. I am certain that the buddy press activation page is correct in settings. Does anyone know how to fix this?

    Thanks in advance!!

    Alessandra

    #255250
    danbp
    Participant

    Hi,

    here a script to load an xprofile country list
    and here an autoload JS script

    And here some instructions for enqueuing a JS to login/register page.

    Happy coding !

    #255248
    rajsandy11
    Participant

    Here is a simple tutorial https://jqueryui.com/autocomplete/

    But my problem is i already added country values in buddypress profile filed as drop down

    Backend:
    Country:(select field)
    Afghanistan
    Anguilla
    Albania etc….

    Frontend Registration Form
    I need to populate the values here in input field with automatic suggestion.

    I just want some script or plugin to achieve it

    #255243
    sharmavishal
    Participant

    1. In BuddyPress, we by default get to see member page. I want to know how to redirect someone who is logging in/ new user after registration to News feed?

    search for login redirect plugins for buddypress

    2. I want to keep those wall, timeline and all in menu bar instead of profile tab. How to do that?

    check wp admin bar codex or associated plugins

    3. I am unable to hide admin bar/ that WordPress logo bar for non-admin user. no plugin helping me out.

    am aware of atleast 2 plugins which are working for me. u need to test/check which ones work with ur theme/setup

    4. how to make the menu such that signed in user can see log out button and other sign in/ register?

    via buddypress components in the menus. logged in and logged out menu links

    5. how to enable realtime notification and instant messaging private n groups both?

    notification is already there and its real time. i belive there is a group chat plugin for buddypress as well

    6. how to remove show dropdown menu in profile

    that would depend on ur theme which u are using

    PS:- I don’t know PHP much. moreover, I cannot afford to hire someone.

    then this would take much time and effort to customise it as per ur needs

    start from here

    Configure BuddyPress

    rajsandy11
    Participant

    Hi all,
    When a user registers on my site he/she has to select country field, Its hard to select from 100’s of countries list. I need something like auto suggest i.e, when a user types ‘I’ it should populate China, India, Indonesia etc.,
    how to achieve this on buddypress registration page ??

    Note: I created Country field in backend and entered countries list manually.

    #255238
    kunaldas1997
    Participant

    hello there!

    I am new to BuddyPress.
    1. In BuddyPress, we by default get to see member page. I want to know how to redirect someone who is logging in/ new user after registration to News feed?
    2. I want to keep those wall, timeline and all in menu bar instead of profile tab. How to do that?
    3. I am unable to hide admin bar/ that WordPress logo bar for non-admin user. no plugin helping me out.
    4. how to make the menu such that signed in user can see log out button and other sign in/ register?
    5. how to enable realtime notification and instant messaging private n groups both?
    6. how to remove show dropdown menu in profile
    PS:- I don’t know PHP much. moreover, I cannot afford to hire someone.

    #255166
    SteveMann
    Participant

    I am a newbie here; I have never used WordPress before. I am trying to move away from PHPBB because it’s just too old-fashioned, as well as difficult to maintain.

    So, I install WordPress on my GoDaddy hosting account, then the BuddyPress plug-in from the WordPress dashboard. I also created the Registration and Activation pages from the WordPress ‘Pages’ tab on the dashboard.

    WordPress 4.5.3
    BuddyPress 2.6.0

    So, now what? The WordPress page looks exactly the same as before installing the BuddyPress plugin.

    From the BuddyPress Settings / Pages if I click on “view” for the Registration and Activation pages, I just see the home page.

    The installation did create the .htaccess file in the root of the blog.

    So, what did I miss? Is BuddyPress even the solution I am looking for? (To replace my PHPBB forums).

    Thanks

    #255148
    spargo25
    Participant

    Hello i have use buddypress and redistrict pro. I will use the registration of redistrict pro and not the registration of buddy press. becouse i have pay account and i whant to use that one. How can i use te redistrict pro instead of the buddypress registration?

    bertl11
    Participant

    Hello,

    I habe some profile fields at the registration eg. address, email.
    Now I want them not to show at the registration and only under the profile tab. I tried it with css but then it dissappears at both pages 🙁

    .editfield.field_8.field_e-mail.optional-field.visibility-public.alt.field_type_textbox {display: none;}
    With the code above it’s hidden everywhere. How can I only hide it at registration page? Would be great if someone can help me!

    Thanks for yout help

    #255065
    Earl_D
    Participant

    Well not exactly sure about what happened but between the update to BP2.6 and tweaking my URL setting after reading this

    BP with SSL do not send registration


    My registration seems to be working again. I had SSL installed on the site after I setup my WP/BP install. Initially changed the site and WordPress URLs in the general settings to remove https from the URL and add www. Before domain. So now URLs looked like this. Http://wwww.mydomain.com Several test registrations worked as expected immediately after that was done. Since I want to try to keep site secure I went back to setting and put the https back in the URL and keep the www so now URLs look like this Https://www.mydomain.com All test registrations still work. Will get a few more random tests in but it looks like the problem is solved. BTW I am using lets encrypt

    maganiza
    Participant

    Hi Guys

    I have been having this problem for a week now. I even posted the problem on this forum but never got a single response. I also checked the other posts but those old 2015 solutions are not working for me.

    My problem is I have a site with latest wordpress and buddypress, when new users register they are not receiving the activation emails. Nothing in the inbox and nothing in the spam/junk folders. I actually have to activate in my user admin panel/list manually. Within the users list I can see a reflection which shows that the activation mail has been sent.

    All hell broke loose last week but before that the site has been sending activation email with wordpress@mydomain.co.za without any issues. I have tried wp-mail-smtp, mail smtp but nothing works. I can send test mails successfully with all these plugins.

    I have tried the hosting company but they are saying the mail hosting server is fine. They are saying there is a problem with either wordpress or buddypress. The email log is below. Please help

    2016-06-20 18:57:46 1bF2WA-000MOp-3X <= noreply@mydomain.co.za H=chs9.ampledns.com (wingrow.co.za) [197.189.252.226]:48386 I=[197.189.252.226]:587 P=esmtpsa X=TLSv1:ECDHE-RSA-AES256-SHA:256 CV=no A=dovecot_login:noreply@mydomain.co.za S=739 id=1263c7ca6911ab6e37dff8bf0ff1ca41@mydomain.co.za T=”[WinGrow] New User Registration” from noreply@mydomain.co.za for admin@mydomain.co.za
    2016-06-20 18:57:46 1bF2WA-000MOp-3X => admin admin@mydomain.co.za F=noreply@mydomain.co.za R=virtual_user T=virtual_userdelivery S=856

    Zefrem23
    Participant

    Hi folks, my client’s site runs a heavily customised Buddypress 2.1.2 but they’ve run into several issues. These are:

    1) The profile information for site members is repeated:
    Repeated info

    2) Despite the user’s birthdate being a required field in the settings, during registration the field doesn’t appear
    Required is set

    Missing birthdate field

    If anyone can possibly help with these two conundrums it’ll be much appreciated.

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