Hello again!
I'm working on a custom navbar, and have mostly gotten it to work the way I want. However, there's one last bit I can't figure out, so here I am. Again.
I want to change the text of (or add an icon to) the "inbox" part whenever a user gets a new PM.
This is the full navbar code. You can see it working here: https://ryya.swedishforum.se/
I want this part:
I've managed to find that the global phpbb variable { S_NEW_PM } should return "true" if there's a new message. However, I don't know how to translate that into code that does anything.
After a lot of googling the other day, I tried adding an if/else like this:
Any ideas on how to change "inbox" when a user gets a message?
As always incredibly thankful for your help!
(Edit: Sorry! I should probably have added this to "Forum Design & Appearance Help", not "Other Problems". Is it possible to move it?)
I'm working on a custom navbar, and have mostly gotten it to work the way I want. However, there's one last bit I can't figure out, so here I am. Again.
I want to change the text of (or add an icon to) the "inbox" part whenever a user gets a new PM.
This is the full navbar code. You can see it working here: https://ryya.swedishforum.se/
- Code:
<!-- BEGIN switch_user_logged_in -->
<div class="topnav" id="myTopnav">
<a href="/portal">Hem</a>
<a href="/forum">Forum</a>
<a href="/privmsg?folder=inbox">Inbox</a>
<div class="dropdown">
<button class="dropbtn">Konto
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content hidden">
<a href="" class="simple-profile">Profil</a>
<a href="/profile?mode=editprofile">InstÀllningar</a>
<a href="/search?search_id=watchsearch">Mina Rollspel</a>
</div>
</div>
<a href="/h1-regler-samlingssida">Regler</a>
<div class="dropdown">
<button class="dropbtn">Om (Sida)
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="/h4-raser">Raser</a>
<a href="https://numoori.fandom.com/wiki/Krafter_i_Numoori" target="_blank">Krafter</a>
<a href="/h9-sprak">SprÄk</a>
<a href="/h6-historia">Historia</a>
<a href="/h7-religion">Religion</a>
<a href="https://numoori.fandom.com/wiki/Main_Page" target="_blank">Wiki</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Kartor
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="/h12-lightbox-test">OmrÄden</a>
<a href="/h12-lightbox-test">Flockar</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Medlemmar
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="/memberlist">Medlemslista</a>
<a href="/h10-dodslista">Dödslista</a>
<a href="/h10-dodslista">Register</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">HjÀlp
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="/h13-kom-igang">Guide: Kom igÄng</a>
<a href="/h17-guide-sida">Guide: KaraktÀrer och Rollspel</a>
<a href="/faq">FAQ: Vanliga frÄgor</a>
<a href="/search">Sök</a>
</div>
</div>
<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a>
</div>
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_user_logged_out -->
<div class="topnav" id="myTopnav">
<a href="/portal">Hem</a>
<a href="/forum">Forum</a>
<a href="/h1-regler-samlingssida">Regler</a>
<div class="dropdown">
<button class="dropbtn">Om (Sida)
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="/h4-raser">Raser</a>
<a href="https://numoori.fandom.com/wiki/Krafter_i_Numoori" target="_blank">Krafter</a>
<a href="/h9-sprak">SprÄk</a>
<a href="/h6-historia">Historia</a>
<a href="/h7-religion">Religion</a>
<a href="https://numoori.fandom.com/wiki/Main_Page" target="_blank">Wiki</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Kartor
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="/h12-lightbox-test">OmrÄden</a>
<a href="/h12-lightbox-test">Flockar</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Medlemmar
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="/memberlist">Medlemslista</a>
<a href="/h10-dodslista">Dödslista</a>
<a href="/h10-dodslista">Register</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">HjÀlp
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="/h13-kom-igang">Guide: Kom igÄng</a>
<a href="/h17-guide-sida">Guide: KaraktÀrer och Rollspel</a>
<a href="/faq">FAQ: Vanliga frÄgor</a>
<a href="/search">Sök</a>
</div>
</div>
<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a>
</div>
<!-- END switch_user_logged_out -->
I want this part:
- Code:
<a href="/privmsg?folder=inbox">Inbox</a>
I've managed to find that the global phpbb variable { S_NEW_PM } should return "true" if there's a new message. However, I don't know how to translate that into code that does anything.
After a lot of googling the other day, I tried adding an if/else like this:
- Code:
<!-- IF S_NEW_PM -->
X
<!-- ELSE -->
Y
<!-- ENDIF -->
Any ideas on how to change "inbox" when a user gets a message?
As always incredibly thankful for your help!
(Edit: Sorry! I should probably have added this to "Forum Design & Appearance Help", not "Other Problems". Is it possible to move it?)