Forum Replies Created
-
In reply to: register file is not update
Thank you so much!!!!!!!!!
In reply to: register file is not updateI’m using
bbpress forum utility pack
GD bbpress Attachments
WP ULike
EWWW Image Optimizer
Akismet Anti-SpamIn reply to: register file is not update<?php /** * User Registration Form * * @package bbPress * @subpackage Theme */ // Exit if accessed directly defined( 'ABSPATH' ) || exit; ?> <form method="post" action="<?php bbp_wp_login_action( array( 'context' => 'login_post' ) ); ?>" class="bbp-login-form"> <fieldset class="bbp-form"> <legend><?php esc_html_e( 'Create an Account', 'bbpress' ); ?></legend> <?php do_action( 'bbp_template_before_register_fields' ); ?> <div class="bbp-template-notice"> <ul> <li><?php esc_html_e( 'Your username must be unique, and cannot be changed later.', 'bbpress' ); ?></li> <li><?php esc_html_e( 'We use your email address to email you a secure password and verify your account.', 'bbpress' ); ?></li> </ul> </div> <div class="bbp-username"> <label for="user_login"><?php esc_html_e( 'Username', 'bbpress' ); ?>: </label> <input type="text" name="user_login" value="<?php bbp_sanitize_val( 'user_login' ); ?>" size="20" id="user_login" maxlength="100" autocomplete="off" placeholder="半角英数字" /> </div> <div class="bbp-email"> <label for="user_email">大学のメールアドレス</label> <input type="text" name="user_email" value="<?php bbp_sanitize_val( 'user_email' ); ?>" size="20" id="user_email" maxlength="100" autocomplete="off" /> </div> <?php do_action( 'register_form' ); ?> <div class="bbp-submit-wrapper"> <button type="submit" name="user-submit" class="button submit user-submit"><?php esc_html_e( 'Register', 'bbpress' ); ?></button> <?php bbp_user_register_fields(); ?> </div> <?php do_action( 'bbp_template_after_register_fields' ); ?> </fieldset> </form>
is this okay?
In reply to: register file is not updateYes, that is there.
Why my form-user-register.php is not update?
Also, I tried to directly add code to form-user-register.php in bbpress (not child theme’s bbpress), the result was not changed.
In reply to: register file is not updateYes. I made ‘bbpress’ directory by following your manual.
I looked at thisI’m sorry for my poor English.
Thanks.In reply to: register file is not updateYes. I copied bbpress’s template to my child theme, and not I put my original template but I add codes to bbpress’s templates.
For example,
before “form-user-register.php”
<input type="text" name="user_login" value="<?php bbp_sanitize_val( 'user_login' ); ?>" size="20" id="user_login" maxlength="100" autocomplete="off" />
after “form-user-register.php”
<input type="text" name="user_login" value="<?php bbp_sanitize_val( 'user_login' ); ?>" size="20" id="user_login" maxlength="100" autocomplete="off" placeholder="half-width characters" />
In reply to: Fatal error: Allowed memory size exhaustedthanks.
It solved!In reply to: To publish a forum or submit a topic is very heavySorry, guys.
I figured out this problem.
If one parent has thousands sub forums, bbpress is very heavy.
I delete parent, bbpress is light.In reply to: To publish a forum or submit a topic is very heavyThank you for replying.
However, my website’s page speed is not bad.
This problem happened only when “publish a forum from dashboard” or “submit a topic”.
The others are no problem.In reply to: how to customize search resultsI am worried about that “GD Power Search for bbPress” is not verified my wordpress version.
Do you intend to update this?In reply to: how to customize search resultsSorry, I forgot to add a code.
add_filter( 'bbp_after_has_search_results_parse_args' , 'my_bbp_filter_search_results' );
Thank you for pointing it out.