X7ROOT File Manager
Current Path:
/home/hamdjcne/public_html/wp-content/themes/hub/bbpress
home
/
hamdjcne
/
public_html
/
wp-content
/
themes
/
hub
/
bbpress
/
ðŸ“
..
📄
content-archive-forum.php
(673 B)
📄
content-archive-topic.php
(827 B)
📄
content-search.php
(762 B)
📄
content-single-forum.php
(1.12 KB)
📄
content-single-reply.php
(475 B)
📄
content-single-topic-lead.php
(2.14 KB)
📄
content-single-topic.php
(927 B)
📄
content-single-user.php
(939 B)
📄
content-single-view.php
(579 B)
📄
content-statistics.php
(1.72 KB)
📄
content-topic-tag-edit.php
(378 B)
📄
feedback-logged-in.php
(205 B)
📄
feedback-no-access.php
(420 B)
📄
feedback-no-forums.php
(211 B)
📄
feedback-no-replies.php
(213 B)
📄
feedback-no-search.php
(227 B)
📄
feedback-no-topics.php
(211 B)
📄
form-anonymous.php
(1.44 KB)
📄
form-forum.php
(5.18 KB)
📄
form-protected.php
(284 B)
📄
form-reply-move.php
(3.31 KB)
📄
form-reply.php
(5.87 KB)
📄
form-search.php
(663 B)
📄
form-topic-merge.php
(3.94 KB)
📄
form-topic-split.php
(4.49 KB)
📄
form-topic-tag.php
(4.33 KB)
📄
form-topic.php
(7.52 KB)
📄
form-user-edit.php
(6.7 KB)
📄
form-user-login.php
(1.4 KB)
📄
form-user-lost-pass.php
(920 B)
📄
form-user-register.php
(1.36 KB)
📄
form-user-roles.php
(332 B)
📄
loop-forums.php
(1.02 KB)
📄
loop-replies.php
(1.43 KB)
📄
loop-search-forum.php
(1.05 KB)
📄
loop-search-reply.php
(1.53 KB)
📄
loop-search-topic.php
(2.03 KB)
📄
loop-search.php
(1.02 KB)
📄
loop-single-forum.php
(1.92 KB)
📄
loop-single-reply.php
(1.72 KB)
📄
loop-single-topic.php
(2.88 KB)
📄
loop-topics.php
(1.1 KB)
📄
pagination-replies.php
(456 B)
📄
pagination-search.php
(443 B)
📄
pagination-topics.php
(455 B)
📄
user-details.php
(3.14 KB)
📄
user-favorites.php
(844 B)
📄
user-profile.php
(962 B)
📄
user-replies-created.php
(877 B)
📄
user-subscriptions.php
(1.52 KB)
📄
user-topics-created.php
(876 B)
Editing: form-user-edit.php
<?php /** * bbPress User Profile Edit Part * * @package bbPress * @subpackage Theme */ ?> <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', 'hub' ) ?></h2> <?php do_action( 'bbp_user_edit_before' ); ?> <fieldset class="bbp-form"> <legend><?php _e( 'Name', 'hub' ) ?></legend> <?php do_action( 'bbp_user_edit_before_name' ); ?> <div> <label for="first_name"><?php _e( 'First Name', 'hub' ) ?></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(); ?>" /> </div> <div> <label for="last_name"><?php _e( 'Last Name', 'hub' ) ?></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(); ?>" /> </div> <div> <label for="nickname"><?php _e( 'Nickname', 'hub' ); ?></label> <input type="text" name="nickname" id="nickname" value="<?php bbp_displayed_user_field( 'nickname', 'edit' ); ?>" class="regular-text" tabindex="<?php bbp_tab_index(); ?>" /> </div> <div> <label for="display_name"><?php _e( 'Display Name', 'hub' ) ?></label> <?php bbp_edit_user_display_name(); ?> </div> <?php do_action( 'bbp_user_edit_after_name' ); ?> </fieldset> <h2 class="entry-title"><?php _e( 'Contact Info', 'hub' ) ?></h2> <fieldset class="bbp-form"> <legend><?php _e( 'Contact Info', 'hub' ) ?></legend> <?php do_action( 'bbp_user_edit_before_contact' ); ?> <div> <label for="url"><?php _e( 'Website', 'hub' ) ?></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(); ?>" /> </div> <?php foreach ( bbp_edit_user_contact_methods() as $name => $desc ) : ?> <div> <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(); ?>" /> </div> <?php endforeach; ?> <?php do_action( 'bbp_user_edit_after_contact' ); ?> </fieldset> <h2 class="entry-title"><?php bbp_is_user_home_edit() ? _e( 'About Yourself', 'hub' ) : _e( 'About the user', 'hub' ); ?></h2> <fieldset class="bbp-form"> <legend><?php bbp_is_user_home_edit() ? _e( 'About Yourself', 'hub' ) : _e( 'About the user', 'hub' ); ?></legend> <?php do_action( 'bbp_user_edit_before_about' ); ?> <div> <label for="description"><?php _e( 'Biographical Info', 'hub' ); ?></label> <textarea name="description" id="description" rows="5" cols="30" tabindex="<?php bbp_tab_index(); ?>"><?php bbp_displayed_user_field( 'description', 'edit' ); ?></textarea> </div> <?php do_action( 'bbp_user_edit_after_about' ); ?> </fieldset> <h2 class="entry-title"><?php _e( 'Account', 'hub' ) ?></h2> <fieldset class="bbp-form"> <legend><?php _e( 'Account', 'hub' ) ?></legend> <?php do_action( 'bbp_user_edit_before_account' ); ?> <div> <label for="user_login"><?php _e( 'Username', 'hub' ); ?></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(); ?>" /> </div> <div> <label for="email"><?php _e( 'Email', 'hub' ); ?></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>', 'hub' ), $new_email['newemail'], esc_url( self_admin_url( 'user.php?dismiss=' . bbp_get_current_user_id() . '_new_email' ) ) ); ?> </span> <?php endif; ?> </div> <div id="password"> <label for="pass1"><?php _e( 'New Password', 'hub' ); ?></label> <fieldset class="bbp-form password"> <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.', 'hub' ); ?></span> <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.', 'hub' ); ?></span><br /> <div id="pass-strength-result"></div> <span class="description indicator-hint"><?php _e( 'Your password should be at least ten characters long. Use upper and lower case letters, numbers, and symbols to make it even stronger.', 'hub' ); ?></span> </fieldset> </div> <?php do_action( 'bbp_user_edit_after_account' ); ?> </fieldset> <?php if ( current_user_can( 'edit_users' ) && ! bbp_is_user_home_edit() ) : ?> <h2 class="entry-title"><?php _e( 'User Role', 'hub' ) ?></h2> <fieldset class="bbp-form"> <legend><?php _e( 'User Role', 'hub' ); ?></legend> <?php do_action( 'bbp_user_edit_before_role' ); ?> <?php if ( is_multisite() && is_super_admin() && current_user_can( 'manage_network_options' ) ) : ?> <div> <label for="super_admin"><?php _e( 'Network Role', 'hub' ); ?></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.', 'hub' ); ?> </label> </div> <?php endif; ?> <?php bbp_get_template_part( 'form', 'user-roles' ); ?> <?php do_action( 'bbp_user_edit_after_role' ); ?> </fieldset> <?php endif; ?> <?php do_action( 'bbp_user_edit_after' ); ?> <fieldset class="submit"> <legend><?php _e( 'Save Changes', 'hub' ); ?></legend> <div> <?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 bbp_is_user_home_edit() ? _e( 'Update Profile', 'hub' ) : _e( 'Update User', 'hub' ); ?></button> </div> </fieldset> </form>
Upload File
Create Folder