Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Adding some text to the signup form?


jwack
Participant

@jwack

hmmm, any idea how to add the a paragraph under the “name” field, under profile details? I am not seeing where its being added? Here is where it pulls in the custom fields, but the name field can’t be edited to add a description like the other custom fields in the admin.

<?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?>

<label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>

<?php do_action( 'bp_' . bp_get_the_profile_field_input_name() . '_errors' ) ?>

<input type="text" name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>" value="<?php bp_the_profile_field_edit_value() ?>" />

<p><?php endif; ?>

Skip to toolbar