File Editor
Directories:
.. (Back)
Files:
content-archive-topic.php
content-search.php
content-single-forum.php
content-single-topic.php
content-single-view.php
feedback-no-search.php
form-reply-move.php
form-reply.php
form-search.php
form-topic-merge.php
form-topic-split.php
form-topic-tag.php
form-topic.php
form-user-edit.php
form-user-login.php
form-user-lost-pass.php
form-user-register.php
loop-forums.php
loop-replies.php
loop-search-forum.php
loop-search-reply.php
loop-search-topic.php
loop-search.php
loop-single-reply.php
loop-single-topic.php
loop-topics.php
pagination-replies.php
pagination-search.php
pagination-topics.php
user-details.php
user-favorites.php
user-replies-created.php
user-subscriptions.php
user-topics-created.php
Create New File
Create
Edit File: form-user-edit.php
<?php /** * bbPress User Profile Edit Part * * @package bbPress * @subpackage Theme */ ?> <div class="x-bbp-general-form"> <form id="bbp-your-profile" action="<?php bbp_user_profile_edit_url( bbp_get_displayed_user_id() ); ?>" method="post" enctype="multipart/form-data"> <h2 class="entry-title"><?php _e( 'Name', 'bbpress' ) ?></h2> <?php do_action( 'bbp_user_edit_before' ); ?> <?php do_action( 'bbp_user_edit_before_name' ); ?> <p> <label for="first_name"><?php _e( 'First Name', 'bbpress' ) ?></label> <input type="text" name="first_name" id="first_name" value="<?php bbp_displayed_user_field( 'first_name', 'edit' ); ?>" class="regular-text" tabindex="<?php bbp_tab_index(); ?>" /> </p> <p> <label for="last_name"><?php _e( 'Last Name', 'bbpress' ) ?></label> <input type="text" name="last_name" id="last_name" value="<?php bbp_displayed_user_field( 'last_name', 'edit' ); ?>" class="regular-text" tabindex="<?php bbp_tab_index(); ?>" /> </p> <p> <label for="nickname"><?php _e( 'Nickname', 'bbpress' ); ?></label> <input type="text" name="nickname" id="nickname" value="<?php bbp_displayed_user_field( 'nickname', 'edit' ); ?>" class="regular-text" tabindex="<?php bbp_tab_index(); ?>" /> </p> <p> <label for="display_name"><?php _e( 'Display Name', 'bbpress' ) ?></label> <?php bbp_edit_user_display_name(); ?> </p> <?php do_action( 'bbp_user_edit_after_name' ); ?> <h2 class="entry-title"><?php _e( 'Contact Info', 'bbpress' ) ?></h2> <?php do_action( 'bbp_user_edit_before_contact' ); ?> <p> <label for="url"><?php _e( 'Website', 'bbpress' ) ?></label> <input type="text" name="url" id="url" value="<?php bbp_displayed_user_field( 'user_url', 'edit' ); ?>" class="regular-text code" tabindex="<?php bbp_tab_index(); ?>" /> </p> <?php foreach ( bbp_edit_user_contact_methods() as $name => $desc ) : ?> <p> <label for="<?php echo esc_attr( $name ); ?>"><?php echo apply_filters( 'user_' . $name . '_label', $desc ); ?></label> <input type="text" name="<?php echo esc_attr( $name ); ?>" id="<?php echo esc_attr( $name ); ?>" value="<?php bbp_displayed_user_field( $name, 'edit' ); ?>" class="regular-text" tabindex="<?php bbp_tab_index(); ?>" /> </p> <?php endforeach; ?> <?php do_action( 'bbp_user_edit_after_contact' ); ?> <h2 class="entry-title"><?php bbp_is_user_home_edit() ? _e( 'About Yourself', 'bbpress' ) : _e( 'About the user', 'bbpress' ); ?></h2> <?php do_action( 'bbp_user_edit_before_about' ); ?> <p> <label for="description"><?php _e( 'Biographical Info', 'bbpress' ); ?></label> <textarea name="description" id="description" rows="5" cols="30" tabindex="<?php bbp_tab_index(); ?>"><?php bbp_displayed_user_field( 'description', 'edit' ); ?></textarea> </p> <?php do_action( 'bbp_user_edit_after_about' ); ?> <h2 class="entry-title"><?php _e( 'Account', 'bbpress' ) ?></h2> <?php do_action( 'bbp_user_edit_before_account' ); ?> <p> <label for="user_login"><?php _e( 'Username', 'bbpress' ); ?></label> <input type="text" name="user_login" id="user_login" value="<?php bbp_displayed_user_field( 'user_login', 'edit' ); ?>" disabled="disabled" class="regular-text" tabindex="<?php bbp_tab_index(); ?>" /> </p> <p> <label for="email"><?php _e( 'Email', 'bbpress' ); ?></label> <input type="text" name="email" id="email" value="<?php bbp_displayed_user_field( 'user_email', 'edit' ); ?>" class="regular-text" tabindex="<?php bbp_tab_index(); ?>" /> <?php // Handle address change requests $new_email = get_option( bbp_get_displayed_user_id() . '_new_email' ); if ( !empty( $new_email ) && $new_email !== bbp_get_displayed_user_field( 'user_email', 'edit' ) ) : ?> <span class="updated inline"> <?php printf( __( 'There is a pending email address change to <code>%1$s</code>. <a href="%2$s">Cancel</a>', 'bbpress' ), $new_email['newemail'], esc_url( self_admin_url( 'user.php?dismiss=' . bbp_get_current_user_id() . '_new_email' ) ) ); ?> </span> <?php endif; ?> </p> <p> <label for="pass1"><?php _e( 'New Password', 'bbpress' ); ?></label> <input type="password" name="pass1" id="pass1" size="16" value="" autocomplete="off" tabindex="<?php bbp_tab_index(); ?>" /> <span class="description"><?php _e( 'If you would like to change the password type a new one. Otherwise leave this blank.', 'bbpress' ); ?></span> </p> <p> <input type="password" name="pass2" id="pass2" size="16" value="" autocomplete="off" tabindex="<?php bbp_tab_index(); ?>" /> <span class="description"><?php _e( 'Type your new password again.', 'bbpress' ); ?></span><br /> </p> <?php do_action( 'bbp_user_edit_after_account' ); ?> <?php if ( current_user_can( 'edit_users' ) && ! bbp_is_user_home_edit() ) : ?> <h2 class="entry-title"><?php _e( 'User Role', 'bbpress' ) ?></h2> <?php do_action( 'bbp_user_edit_before_role' ); ?> <?php if ( is_multisite() && is_super_admin() && current_user_can( 'manage_network_options' ) ) : ?> <p> <label for="super_admin"><?php _e( 'Network Role', 'bbpress' ); ?></label> <label> <input class="checkbox" type="checkbox" id="super_admin" name="super_admin"<?php checked( is_super_admin( bbp_get_displayed_user_id() ) ); ?> tabindex="<?php bbp_tab_index(); ?>" /> <?php _e( 'Grant this user super admin privileges for the Network.', 'bbpress' ); ?> </label> </p> <?php endif; ?> <?php bbp_get_template_part( 'form', 'user-roles' ); ?> <?php do_action( 'bbp_user_edit_after_role' ); ?> <?php endif; ?> <?php do_action( 'bbp_user_edit_after' ); ?> <p class="bbp-submit-wrapper"> <?php bbp_edit_user_form_fields(); ?> <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_user_edit_submit" name="bbp_user_edit_submit" class="button submit user-submit"><?php _e( 'Update', '__x__' ); ?></button> </p> </form> </div>
Save Changes
Rename File
Rename