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-reply-move.php
<?php /** * Move Reply * * @package bbPress * @subpackage Theme */ ?> <div id="bbpress-forums"> <?php bbp_breadcrumb(); ?> <?php if ( is_user_logged_in() && current_user_can( 'edit_topic', bbp_get_topic_id() ) ) : ?> <div id="move-reply-<?php bbp_topic_id(); ?>" class="bbp-reply-move"> <form id="move_reply" name="move_reply" method="post" action="<?php the_permalink(); ?>"> <fieldset class="bbp-form"> <legend><?php printf( __( 'Move reply "%s"', 'hub' ), bbp_get_reply_title() ); ?></legend> <div> <div class="bbp-template-notice info"> <p><?php esc_html_e( 'You can either make this reply a new topic with a new title, or merge it into an existing topic.', 'hub' ); ?></p> </div> <div class="bbp-template-notice"> <p><?php esc_html_e( 'If you choose an existing topic, replies will be ordered by the time and date they were created.', 'hub' ); ?></p> </div> <fieldset class="bbp-form"> <legend><?php esc_html_e( 'Move Method', 'hub' ); ?></legend> <div> <input name="bbp_reply_move_option" id="bbp_reply_move_option_reply" type="radio" checked="checked" value="topic" tabindex="<?php bbp_tab_index(); ?>" /> <label for="bbp_reply_move_option_reply"><?php printf( __( 'New topic in <strong>%s</strong> titled:', 'hub' ), bbp_get_forum_title( bbp_get_reply_forum_id( bbp_get_reply_id() ) ) ); ?></label> <input type="text" id="bbp_reply_move_destination_title" value="<?php printf( __( 'Moved: %s', 'hub' ), bbp_get_reply_title() ); ?>" tabindex="<?php bbp_tab_index(); ?>" size="35" name="bbp_reply_move_destination_title" /> </div> <?php if ( bbp_has_topics( array( 'show_stickies' => false, 'post_parent' => bbp_get_reply_forum_id( bbp_get_reply_id() ), 'post__not_in' => array( bbp_get_reply_topic_id( bbp_get_reply_id() ) ) ) ) ) : ?> <div> <input name="bbp_reply_move_option" id="bbp_reply_move_option_existing" type="radio" value="existing" tabindex="<?php bbp_tab_index(); ?>" /> <label for="bbp_reply_move_option_existing"><?php esc_html_e( 'Use an existing topic in this forum:', 'hub' ); ?></label> <?php bbp_dropdown( array( 'post_type' => bbp_get_topic_post_type(), 'post_parent' => bbp_get_reply_forum_id( bbp_get_reply_id() ), 'selected' => -1, 'exclude' => bbp_get_reply_topic_id( bbp_get_reply_id() ), 'select_id' => 'bbp_destination_topic' ) ); ?> </div> <?php endif; ?> </fieldset> <div class="bbp-template-notice error"> <p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'hub' ); ?></p> </div> <div class="bbp-submit-wrapper"> <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_move_reply_submit" name="bbp_move_reply_submit" class="button submit"><?php _e( 'Submit', 'hub' ); ?></button> </div> </div> <?php bbp_move_reply_form_fields(); ?> </fieldset> </form> </div> <?php else : ?> <div id="no-reply-<?php bbp_reply_id(); ?>" class="bbp-no-reply"> <div class="entry-content"><?php is_user_logged_in() ? _e( 'You do not have the permissions to edit this reply!', 'hub' ) : _e( 'You cannot edit this reply.', 'hub' ); ?></div> </div> <?php endif; ?> </div>
Upload File
Create Folder