golden hour
/var/www/html/wp-content/plugins/buddypress/bp-themes/bp-default/members/single/notifications
⬆️ Go Up
Upload
File/Folder
Size
Actions
feedback-no-notifications.php
599 B
Del
OK
notifications-loop.php
631 B
Del
OK
read.php
835 B
Del
OK
unread.php
835 B
Del
OK
Edit: notifications-loop.php
<table class="notifications"> <thead> <tr> <th class="icon"></th> <th class="title"><?php _e( 'Notification', 'buddypress' ); ?></th> <th class="date"><?php _e( 'Date Received', 'buddypress' ); ?></th> <th class="actions"><?php _e( 'Actions', 'buddypress' ); ?></th> </tr> </thead> <tbody> <?php while ( bp_the_notifications() ) : bp_the_notification(); ?> <tr> <td></td> <td><?php bp_the_notification_description(); ?></td> <td><?php bp_the_notification_time_since(); ?></td> <td><?php bp_the_notification_action_links(); ?></td> </tr> <?php endwhile; ?> </tbody> </table>
Save