golden hour
/var/www/html/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members
⬆️ Go Up
Upload
File/Folder
Size
Actions
activate.php
2.11 KB
Del
OK
index.php
4.17 KB
Del
OK
members-loop.php
3.13 KB
Del
OK
register.php
13.42 KB
Del
OK
single
-
Del
OK
Edit: activate.php
<?php /** * BuddyPress - Members Activate * * @package BuddyPress * @subpackage bp-legacy * @version 3.0.0 */ ?> <div id="buddypress"> <?php /** * Fires before the display of the member activation page. * * @since 1.1.0 */ do_action( 'bp_before_activation_page' ); ?> <div class="page" id="activate-page"> <div id="template-notices" role="alert" aria-atomic="true"> <?php /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ do_action( 'template_notices' ); ?> </div> <?php /** * Fires before the display of the member activation page content. * * @since 1.1.0 */ do_action( 'bp_before_activate_content' ); ?> <?php if ( bp_account_was_activated() ) : ?> <?php if ( isset( $_GET['e'] ) ) : ?> <p><?php _e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ); ?></p> <?php else : ?> <p> <?php /* translators: %s: login url */ printf( __( 'Your account was activated successfully! You can now <a href="%s">log in</a> with the username and password you provided when you signed up.', 'buddypress' ), wp_login_url( bp_get_root_domain() ) ); ?> </p> <?php endif; ?> <?php else : ?> <p><?php _e( 'Please provide a valid activation key.', 'buddypress' ); ?></p> <form action="" method="post" class="standard-form" id="activation-form"> <label for="key"><?php _e( 'Activation Key:', 'buddypress' ); ?></label> <input type="text" name="key" id="key" value="<?php echo esc_attr( bp_get_current_activation_key() ); ?>" /> <p class="submit"> <input type="submit" name="submit" value="<?php esc_attr_e( 'Activate', 'buddypress' ); ?>" /> </p> </form> <?php endif; ?> <?php /** * Fires after the display of the member activation page content. * * @since 1.1.0 */ do_action( 'bp_after_activate_content' ); ?> </div><!-- .page --> <?php /** * Fires after the display of the member activation page. * * @since 1.1.0 */ do_action( 'bp_after_activation_page' ); ?> </div><!-- #buddypress -->
Save