golden hour
/var/www/html/wp-content/plugins/buddypress/bp-themes/bp-default/members/single/settings
⬆️ Go Up
Upload
File/Folder
Size
Actions
capabilities.php
2.05 KB
Del
OK
delete-account.php
2.66 KB
Del
OK
general.php
2.93 KB
Del
OK
notifications.php
1.97 KB
Del
OK
profile.php
2.87 KB
Del
OK
Edit: notifications.php
<?php /** * BuddyPress Notification Settings * * @package BuddyPress * @subpackage bp-default */ get_header( 'buddypress' ); ?> <div id="content"> <div class="padder"> <?php do_action( 'bp_before_member_settings_template' ); ?> <div id="item-header"> <?php locate_template( array( 'members/single/member-header.php' ), true ); ?> </div><!-- #item-header --> <div id="item-nav"> <div class="item-list-tabs no-ajax" id="object-nav" role="navigation"> <ul> <?php bp_get_displayed_user_nav(); ?> <?php do_action( 'bp_member_options_nav' ); ?> </ul> </div> </div><!-- #item-nav --> <div id="item-body" role="main"> <?php do_action( 'bp_before_member_body' ); ?> <div class="item-list-tabs no-ajax" id="subnav"> <ul> <?php bp_get_options_nav(); ?> <?php do_action( 'bp_member_plugin_options_nav' ); ?> </ul> </div><!-- .item-list-tabs --> <h3><?php _e( 'Email Notification', 'buddypress' ); ?></h3> <?php do_action( 'bp_template_content' ); ?> <form action="<?php echo bp_displayed_user_domain() . bp_get_settings_slug() . '/notifications'; ?>" method="post" class="standard-form" id="settings-form"> <p><?php _e( 'Send an email notice when:', 'buddypress' ); ?></p> <?php do_action( 'bp_notification_settings' ); ?> <?php do_action( 'bp_members_notification_settings_before_submit' ); ?> <div class="submit"> <input type="submit" name="submit" value="<?php esc_attr_e( 'Save Changes', 'buddypress' ); ?>" id="submit" class="auto" /> </div> <?php do_action( 'bp_members_notification_settings_after_submit' ); ?> <?php wp_nonce_field('bp_settings_notifications'); ?> </form> <?php do_action( 'bp_after_member_body' ); ?> </div><!-- #item-body --> <?php do_action( 'bp_after_member_settings_template' ); ?> </div><!-- .padder --> </div><!-- #content --> <?php get_sidebar( 'buddypress' ); ?> <?php get_footer( 'buddypress' ); ?>
Save