MyBB Community Forums

Full Version: 2 Question !
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello for everyone and sorry for my english.

I am working on some templates for kill the time but i have 2 problem that i couldnt fix since 3 days.

So here they are, hope you can help me.

1) This is not a problem actually, this is about how to and js?

I use myalerts and i did a noticer like facebook BUT my alerts always show alerts even there is none like zero.
So how to do that like PM notificator. if there is no alert then not show up.
what i did:
[Image: BSqRlVg.jpg]

PM js:
<script type="text/javascript">
var pm_container = document.getElementById('pm_notification');
if (pm_container.innerHTML == "0"){
	pm_container.style.display = 'none';  
} 
</script>

2)Quick Reply doesnt work. It does nothing. I deleted one by one all headerinclude but it still doesnt work. (I know there are lots of thread for this but none of them doesnt work for me.
anything?? Smile
<script type="text/javascript">
var unreadAlerts = document.getElementById('pm_notification');
if (unreadAlerts.innerHTML == "0"){
unreadAlerts.style.display = 'none';
}
</script>

I made this but didn't work.
I still need help Smile