Noche
New Member
Noob and newbie
Posts: 108
inherit
155521
0
Dec 15, 2023 6:37:45 GMT -8
Noche
Noob and newbie
108
June 2010
sod
|
Post by Noche on Jul 27, 2022 12:46:27 GMT -8
It might seem a little odd..
I am currently trying to create a Proboards, but it is for people who has never used one before. So I'm doing my best to explain everything as simply as possible, including how to register and login.
For the guide it self I have made a custom page, that was easy. But the page is cluttering my navigation bar when logged in. Does a function/Plugin exist that allow me to hide it when logged in? or can it be made?
I do find the whole hide/show menu items for specific groups a bit lacking. If anyone has any ideas please, let me know!
- Best regards
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Jul 29, 2022 8:14:03 GMT -8
It might seem a little odd..
I am currently trying to create a Proboards, but it is for people who has never used one before. So I'm doing my best to explain everything as simply as possible, including how to register and login.
For the guide it self I have made a custom page, that was easy. But the page is cluttering my navigation bar when logged in. Does a function/Plugin exist that allow me to hide it when logged in? or can it be made? I do find the whole hide/show menu items for specific groups a bit lacking. If anyone has any ideas please, let me know! - Best regards
Here's one way.. Wrap all of the guest only content in <div> tags (or whichever tag suits the content best) and give it the class name 'guest_only', then add this to the top of the page.. <script> if(pb.data('user').is_logged_in == 1) { $('style')[0].append('.guest_only { display: none; };'); } </script>
|
|
Noche
New Member
Noob and newbie
Posts: 108
inherit
155521
0
Dec 15, 2023 6:37:45 GMT -8
Noche
Noob and newbie
108
June 2010
sod
|
Post by Noche on Jul 30, 2022 5:30:55 GMT -8
Thank you so much!
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Jul 31, 2022 11:46:29 GMT -8
No worries..
|
|