Re: Adding some text to the signup form?
Chouf1,
You don’t want to edit the file you specified. You want to edit the child template for the file you specified.
jwack,
What about something like:
<?php if ( 'field_1' == bp_get_the_profile_field_input_name() ) {
echo "the message/html you want below the input label";
} ?>
Place that below the piece of code that you have up above in the register.php file.
Seems like there might be something better than bp_get_the_profile_field_input_name() since that’s already been called above, but that should work alright.