golden hour
/home/phakp/public_html/wp/wp-content/plugins/bbpress/templates/default/bbpress
⬆️ Go Up
Upload
File/Folder
Size
Actions
alert-topic-lock.php
733 B
Del
OK
content-archive-forum.php
653 B
Del
OK
content-archive-topic.php
1.15 KB
Del
OK
content-search.php
842 B
Del
OK
content-single-forum.php
1.2 KB
Del
OK
content-single-reply.php
559 B
Del
OK
content-single-topic-lead.php
2.33 KB
Del
OK
content-single-topic.php
1.12 KB
Del
OK
content-single-user.php
1.21 KB
Del
OK
content-single-view.php
663 B
Del
OK
content-statistics.php
1.88 KB
Del
OK
content-topic-tag-edit.php
701 B
Del
OK
feedback-logged-in.php
285 B
Del
OK
feedback-no-access.php
508 B
Del
OK
feedback-no-forums.php
292 B
Del
OK
feedback-no-replies.php
294 B
Del
OK
feedback-no-search.php
308 B
Del
OK
feedback-no-topics.php
292 B
Del
OK
form-anonymous.php
1.47 KB
Del
OK
form-forum.php
5.97 KB
Del
OK
form-protected.php
372 B
Del
OK
form-reply-move.php
3.4 KB
Del
OK
form-reply-search.php
621 B
Del
OK
form-reply.php
7.38 KB
Del
OK
form-search.php
705 B
Del
OK
form-topic-merge.php
4.15 KB
Del
OK
form-topic-search.php
620 B
Del
OK
form-topic-split.php
4.61 KB
Del
OK
form-topic-tag.php
4.67 KB
Del
OK
form-topic.php
8.02 KB
Del
OK
form-user-edit.php
5.51 KB
Del
OK
form-user-login.php
1.44 KB
Del
OK
form-user-lost-pass.php
977 B
Del
OK
form-user-passwords.php
2.12 KB
Del
OK
form-user-register.php
1.62 KB
Del
OK
form-user-roles.php
416 B
Del
OK
loop-forums.php
1.13 KB
Del
OK
loop-replies.php
1.31 KB
Del
OK
loop-search-forum.php
1.13 KB
Del
OK
loop-search-reply.php
1.58 KB
Del
OK
loop-search-topic.php
2.1 KB
Del
OK
loop-search.php
1.11 KB
Del
OK
loop-single-forum.php
1.98 KB
Del
OK
loop-single-reply.php
1.79 KB
Del
OK
loop-single-topic.php
2.97 KB
Del
OK
loop-topics.php
1.21 KB
Del
OK
pagination-replies.php
488 B
Del
OK
pagination-search.php
475 B
Del
OK
pagination-topics.php
487 B
Del
OK
user-details.php
3.77 KB
Del
OK
user-engagements.php
876 B
Del
OK
user-favorites.php
866 B
Del
OK
user-profile.php
1.81 KB
Del
OK
user-replies-created.php
896 B
Del
OK
user-subscriptions.php
1.43 KB
Del
OK
user-topics-created.php
900 B
Del
OK
Edit: form-user-passwords.php
<?php /** * User Password Generator * * @package bbPress * @subpackage Theme */ // Exit if accessed directly defined( 'ABSPATH' ) || exit; // Filters the display of the password fields if ( apply_filters( 'show_password_fields', true, bbpress()->displayed_user ) ) : ?> <div id="password" class="user-pass1-wrap"> <label for="user_login"><?php esc_html_e( 'Password', 'bbpress' ); ?></label> <button type="button" class="button wp-generate-pw hide-if-no-js"><?php esc_html_e( 'Generate Password', 'bbpress' ); ?></button> <fieldset class="bbp-form password wp-pwd hide-if-js"> <span class="password-input-wrapper"> <input type="password" name="pass1" id="pass1" class="regular-text" value="" autocomplete="off" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" aria-describedby="pass-strength-result" /> </span> <span class="password-button-wrapper"> <button type="button" class="button wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password', 'bbpress' ); ?>"> <span class="dashicons dashicons-hidden"></span> <span class="text"><?php esc_html_e( 'Hide', 'bbpress' ); ?></span> </button><button type="button" class="button wp-cancel-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Cancel password change', 'bbpress' ); ?>"> <span class="dashicons dashicons-no"></span> <span class="text"><?php esc_html_e( 'Cancel', 'bbpress' ); ?></span> </button> </span> <div style="display:none" id="pass-strength-result" aria-live="polite"></div> </fieldset> </div> <div class="user-pass2-wrap hide-if-js"> <label for="pass2"><?php esc_html_e( 'Repeat New Password', 'bbpress' ); ?></label> <input name="pass2" type="password" id="pass2" class="regular-text" value="" autocomplete="off" /> <p class="description"><?php esc_html_e( 'Type your new password again.', 'bbpress' ); ?></p> </div> <div class="pw-weak"> <label for="pw_weak"><?php esc_html_e( 'Confirm', 'bbpress' ); ?></label> <input type="checkbox" name="pw_weak" class="pw-checkbox checkbox" /> <p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p> </div> <?php endif;
Save