golden hour
/home/godaofbq/elitehyperbarics.com/wp-content/plugins/buddypress/bp-messages/screens
⬆️ Go Up
Upload
File/Folder
Size
Actions
compose.php
897 B
Del
OK
inbox.php
779 B
Del
OK
notices.php
801 B
Del
OK
sentbox.php
795 B
Del
OK
starred.php
1.03 KB
Del
OK
view.php
2.32 KB
Del
OK
Edit: sentbox.php
<?php /** * Messages: User's "Messages > Sent" screen handler. * * @package BuddyPress * @subpackage MessageScreens * @since 3.0.0 */ /** * Load the Messages > Sent screen. * * @since 1.0.0 */ function messages_screen_sentbox() { if ( bp_action_variables() ) { bp_do_404(); return; } /** * Fires right before the loading of the Messages sentbox screen template file. * * @since 1.0.0 */ do_action( 'messages_screen_sentbox' ); $templates = array( /** * Filters the template to load for the Messages sentbox screen. * * @since 1.0.0 * * @param string $template Path to the messages template to load. */ apply_filters( 'messages_template_sentbox', 'members/single/home' ), 'members/single/index', ); bp_core_load_template( $templates ); }
Save