Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: delete word \”Username\” within \”Username-Login-box\” ?


Anonymous User 96400
Inactive

@anonymized-96400

Hey Erich,

in header.php look for this bit around line 47:

<input type="text" name="log" id="user_login" value="<?php _e( 'Username', 'buddypress' ) ?>" onfocus="if (this.value == '<?php _e( 'Username', 'buddypress' ) ?>') {this.value = '';}" onblur="if (this.value == '') {this.value = '<?php _e( 'Username', 'buddypress' ) ?>';}" />

Use this instead:

<input type="text" name="log" id="user_login" value="" />

Don’t forget to copy header.php into your child theme.

Skip to toolbar