New messages link
2 posters
Page 1 of 1
New messages link
Hello,I created an extra navbar... And I want to change the "mailbox link" when I receive new messages...I know this problem was posted on this forum many times but i can't find it...please, Help me...Thanks
Last edited by Niko! on Fri 4 May - 18:56; edited 3 times in total
Re: New messages link
I want to have You have no new messages and You have Xnew messages with a customized navbar in templates... (:
Re: New messages link
[Have you removed the old navbar? As you should keep it in your page but hidden in order to access this information.
If you have kept the old navbar you can do this:
If you have kept the old navbar you can do this:
- Code:
if(document.getElementById('i_icon_mini_new_message')) {
//the user has a new message, do something.
}
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: New messages link
LGforum wrote:[Have you removed the old navbar? As you should keep it in your page but hidden in order to access this information.
If you have kept the old navbar you can do this:
- Code:
if(document.getElementById('i_icon_mini_new_message')) {
//the user has a new message, do something.
}
No, I have a new navbar...
Re: New messages link
I'd recommend adding it back into the page but in a hidden DIV, so you can access the information it provides.
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: New messages link
LGforum wrote:I'd recommend adding it back into the page but in a hidden DIV, so you can access the information it provides.
Which infos do I need?
Re: New messages link
Well you need the private message info, thats what this thread is about
Just put the old navigation bar back, but in a div with style display:none. I know you know what I mean lol.
then the script in my posts above can be used.
Just put the old navigation bar back, but in a div with style display:none. I know you know what I mean lol.
then the script in my posts above can be used.
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: New messages link
Well, I'm trying on my test forum...
I have the default navbar
But what I have to edit? O.o
I have the default navbar
But what I have to edit? O.o
LGforum wrote:
- Code:
if(document.getElementById('i_icon_mini_new_message')) {
//the user has a new message, do something.
}
Re: New messages link
Rideem is right, just anything in the IF statement.
The best thing to do (imo) is to have a widget/announcement (anywhere which takes HTML) and design yourself a pop up. Make it look nice and however you want it then stick 'style="display:none" on it so it is hidden. Then in the if statement put:
Which will mean your pop up will popup whenever there is a new message.
I also shared a tutorial on your site of a good way of making a nice pop up using a template trick.
The best thing to do (imo) is to have a widget/announcement (anywhere which takes HTML) and design yourself a pop up. Make it look nice and however you want it then stick 'style="display:none" on it so it is hidden. Then in the if statement put:
- Code:
document.getElementById('ID_OF_POPUP').style.display='';
Which will mean your pop up will popup whenever there is a new message.
I also shared a tutorial on your site of a good way of making a nice pop up using a template trick.
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: New messages link
Well,
I added this code:
Which code I need to put? Can you gt it ready for me? U.u
I added this code:
- Code:
<div style="display: none;">{GENERATED_NAV_BAR}</div>
- Code:
<div class="popupclass" id="popupid">You received a new message. Read it</div>
Which code I need to put? Can you gt it ready for me? U.u
Re: New messages link
Put this in an announcement or template or somthing:
- Code:
<div class="popupclass" id="privmsgpopup">You received a new message. Read it</div>
<script>
if(document.getElementById('i_icon_mini_new_message')) {
document.getElementById('privmsgpopup').style.display = '';
}
</script>
LGforum- Hyperactive
- Posts : 2265
Reputation : 264
Language : English
Location : UK
Similar topics
» Changing Background of New Messages Link
» Is there anyway to change the private messages link?
» Private messages shows you have no new messages
» How do I create a link where you hover over the link and it pops up some kinda text?
» Link Random Banners to a diffrent Link
» Is there anyway to change the private messages link?
» Private messages shows you have no new messages
» How do I create a link where you hover over the link and it pops up some kinda text?
» Link Random Banners to a diffrent Link
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum