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: user-details.php
<?php /** * User Details * * @package bbPress * @subpackage Theme */ ?> <?php do_action( 'bbp_template_before_user_details' ); ?> <div id="bbp-single-user-details"> <div id="bbp-user-avatar"> <span class='vcard'> <a class="url fn n" href="<?php bbp_user_profile_url(); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?>" rel="me"> <?php echo get_avatar( bbp_get_displayed_user_field( 'user_email', 'raw' ), apply_filters( 'bbp_single_user_details_avatar_size', 150 ) ); ?> </a> </span> </div><!-- #author-avatar --> <div id="bbp-user-navigation"> <ul> <li class="<?php if ( bbp_is_single_user_profile() ) :?>current<?php endif; ?>"> <span class="vcard bbp-user-profile-link"> <a class="url fn n" href="<?php bbp_user_profile_url(); ?>" title="<?php printf( esc_attr__( "%s's Profile", 'hub' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>" rel="me"><?php _e( 'Profile', 'hub' ); ?></a> </span> </li> <li class="<?php if ( bbp_is_single_user_topics() ) :?>current<?php endif; ?>"> <span class='bbp-user-topics-created-link'> <a href="<?php bbp_user_topics_created_url(); ?>" title="<?php printf( esc_attr__( "%s's Topics Started", 'hub' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Topics Started', 'hub' ); ?></a> </span> </li> <li class="<?php if ( bbp_is_single_user_replies() ) :?>current<?php endif; ?>"> <span class='bbp-user-replies-created-link'> <a href="<?php bbp_user_replies_created_url(); ?>" title="<?php printf( esc_attr__( "%s's Replies Created", 'hub' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Replies Created', 'hub' ); ?></a> </span> </li> <?php if ( bbp_is_favorites_active() ) : ?> <li class="<?php if ( bbp_is_favorites() ) :?>current<?php endif; ?>"> <span class="bbp-user-favorites-link"> <a href="<?php bbp_favorites_permalink(); ?>" title="<?php printf( esc_attr__( "%s's Favorites", 'hub' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Favorites', 'hub' ); ?></a> </span> </li> <?php endif; ?> <?php if ( bbp_is_user_home() || current_user_can( 'edit_users' ) ) : ?> <?php if ( bbp_is_subscriptions_active() ) : ?> <li class="<?php if ( bbp_is_subscriptions() ) :?>current<?php endif; ?>"> <span class="bbp-user-subscriptions-link"> <a href="<?php bbp_subscriptions_permalink(); ?>" title="<?php printf( esc_attr__( "%s's Subscriptions", 'hub' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Subscriptions', 'hub' ); ?></a> </span> </li> <?php endif; ?> <li class="<?php if ( bbp_is_single_user_edit() ) :?>current<?php endif; ?>"> <span class="bbp-user-edit-link"> <a href="<?php bbp_user_profile_edit_url(); ?>" title="<?php printf( esc_attr__( "Edit %s's Profile", 'hub' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Edit', 'hub' ); ?></a> </span> </li> <?php endif; ?> </ul> </div><!-- #bbp-user-navigation --> </div><!-- #bbp-single-user-details --> <?php do_action( 'bbp_template_after_user_details' ); ?>
Upload File
Create Folder