Skip to:
Content
Pages
Categories
Search
Top
Bottom

Addional info on BP registration form

  • @earl_d

    Participant

    Is there a way to add additional information to the BP when rated registration form. I want to remind people to check their spam folders for the activation email. The only thing I could figure is adding a read only filed to the sign up group. Is there a better way?

Viewing 2 replies - 1 through 2 (of 2 total)
  • @thinlizzie

    Participant

    Hi,

    Search for bp_before_signup_profile_fields , that would allow you to add content above the registration fields.

    Similarly, bp_after_signup_profile_fields allows you to add content below the fields.

    @thinlizzie

    Participant

    Or even this might be suitable for you …

    
    add_filter( 'bp_nouveau_feedback_messages', function ( $args ) {
    	$args['request-details']['message'] = 'My custom message goes here';
    	return $args;
    } );
    
    
Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
Skip to toolbar