XF 2.2 Missing navigational tab for registered users?

jromaine

Active member
I have a tab missing up top of my forum that I cannot seem to have display for regular "registered" users.

It shows for admin, and of course that checks out with the permissions that appear to be set as shown below

1671551294922.webp

However I'm unsure how to modify this code to allow registered users to be able to view the Lessons tab?
 
Okay it appears that I've got it working?

I simply copied the settings from the "members" tab.

This is what I have

1671551600317.webp

Is this the right way to do it? Or have I potentially caused a problem that I'm not aware of?
 
If you want that only registered users can see the tabs just put $xf.visitor.user_id
$xf.visitor.canViewMemberList() will prevent regular users to see the tabs if they can't see the Member list (which is a permission setting).
 
Top Bottom