Forgive me if this has come up before, we are relatively new to WPForo. The forum application we had before had a link in the top menus called "Activity" which went directly to the recent posts. In WPForo the only way to get to recent activity is that link at the bottom of the page. It would be very useful to also have that link at the top.
I will add a redirect for my users so when they log in they will be redirected to the recent posts page, but many of my users never log out. So it would be useful to have that feature readily available at the top.
Also, semi-related, it would be nice to have a 'jump to top' feature at the bottom of the page for long topics with many posts so users didn't have to manually scroll up.
TIA!
(Edit: Sorry, I think I posted in the wrong forum! Moderators please move as appropriate!)
You can add /%wpforo-recent%/ to your wpForo menu easily enough - and name the menu item whatever you like.
If you are adept at file edits you can also add it to the forum feed div ribbon in /wpforo/wpf-themes/2022/forum.php. Something along lines replacing the code below <div class="wpforo-feed"> (approx Line 5 to Line 14) with
<span class="wpf-stat-recent-posts"><a href="<?php echo esc_url( wpforo_home_url( wpforo_settings_get_slug( 'recent' ) ) ) ?>"><i class="fas fa-list-ul"></i> <span><?php wpforo_phrase( 'Recent Posts' ) ?></span></a> | <span class="wpf-unread-posts"> <a href="<?php echo esc_url( wpforo_home_url( wpforo_settings_get_slug( 'recent' ) . '?view=unread' ) ) ?>"> <i class="fas fa-layer-group" style="padding-right: 1px; font-size: 13px;"></i> <span><?php wpforo_phrase( 'Unread Posts' ) ?></span> </a> </span>| <span class="wpf-all-read"><?php wpforo_mark_all_read_link() ?></span> <?php wpforo_feed_link( 'home' ) ?> </div> </h1>
Your Wordpress theme should have a "back to the top" function built in.