golden hour
/var/www/html/wp-content/plugins/buddypress/bp-messages/screens
⬆️ Go Up
Upload
File/Folder
Size
Actions
compose.php
822 B
Del
OK
inbox.php
704 B
Del
OK
notices.php
769 B
Del
OK
sentbox.php
720 B
Del
OK
starred.php
1.03 KB
Del
OK
view.php
2.25 KB
Del
OK
Edit: notices.php
<?php /** * Messages: User's "Messages > Notices" screen handler * * @package BuddyPress * @subpackage MessageScreens * @since 3.0.0 */ /** * Load the Messages > Notices screen. * * @since 1.0.0 * * @return false|null False on failure. */ function messages_screen_notices() { if ( bp_action_variables() ) { bp_do_404(); return; } /** * Fires right before the loading of the Messages notices screen template file. * * @since 1.0.0 */ do_action( 'messages_screen_notices' ); /** * Filters the template to load for the Messages notices screen. * * @since 1.0.0 * * @param string $template Path to the messages template to load. */ bp_core_load_template( apply_filters( 'messages_template_notices', 'members/single/home' ) ); }
Save