Notifications
Clear all

How to remove member view while keeping menu bar

11 Posts
3 Users
0 Reactions
221 Views
Posts: 17
Topic starter
(@am_wolfe)
Eminent Member
Joined: 1 year ago

Will do, thank you!

Reply
Posts: 2
(@henry)
New Member
Joined: 4 days ago

If the "menu bar" you want to keep is from wpForo's own template, you can:

  • Use a custom menu with only the links you want.

  • Remove Profile, My Posts, etc. using:

add_filter('wpforo_menu_user_items', function($items){
unset($items['profile']);
return $items;
});

place this in your functions.php

Reply
Posts: 17
Topic starter
(@am_wolfe)
Eminent Member
Joined: 1 year ago

Thanks so much Sofy, I appreciate all your support.

Reply
Page 2 / 2