Notifications on Nav Bar?
3 posters
Page 1 of 1
Notifications on Nav Bar?
Is there a chance of putting Notification (which are currently on the tool bar) somewhere on the Nav Bar?
I have coded the CSS (with the help of forumotion users) that hides/blocks the main forum logo/header. Therefore enabling the Tool bar does nothing. Just ads space to the current forum layout.
I don't want the tool bar. However, I really wants the notifications.
Any suggestions?
I have coded the CSS (with the help of forumotion users) that hides/blocks the main forum logo/header. Therefore enabling the Tool bar does nothing. Just ads space to the current forum layout.
I don't want the tool bar. However, I really wants the notifications.
Any suggestions?
Re: Notifications on Nav Bar?
Sorry This is a problem we can not fix as the tool bar and navbar are not linked the same way so there for im sorry this can not be done right now.
Re: Notifications on Nav Bar?
@APE you are wrong, I've done this notification system some time ago.Forumotion Notification system use a PHP Syntax on the #notif_list ID. Based on this, you can extract from Forumotion PHP Base, the whole code, only with this small ID. To make our job easier, you have the link input already done with whole JS. You will see it in a minute, but let's start working.
First of all, you need to activate your toolbar so go into Administration Panel -> Module -> Toolbar -> Configuration -> Activate the toolbar : YES
Now, I tested this into phpBB3, it work with all versions, if you have the phpBB3 it will be easier.
Now, into step two, we need to go into Administration Panel -> Display -> Templates -> General -> Overal_header and search for this small code
Exactly after it, just add this small code
That's all! See? Very easy, now you want to hide the toolbar so we come with some extra CSS work.
Go into Administration Panel -> Display -> Colors -> CSS and add this code
This will style your new notifications system a bit, to make it look better.
If you use PunBB, when you search, instead the old code, look for
Good luck,
levy
First of all, you need to activate your toolbar so go into Administration Panel -> Module -> Toolbar -> Configuration -> Activate the toolbar : YES
Now, I tested this into phpBB3, it work with all versions, if you have the phpBB3 it will be easier.
Now, into step two, we need to go into Administration Panel -> Display -> Templates -> General -> Overal_header and search for this small code
- Code:
<li>{GENERATED_NAV_BAR}</li>
Exactly after it, just add this small code
- Code:
<a id="fa_notifications" class="rightHeaderLink unread">Notifications<span id="notif_unread"></span></a>
<ul id="notif_list">
<li></li>
</ul>
That's all! See? Very easy, now you want to hide the toolbar so we come with some extra CSS work.
Go into Administration Panel -> Display -> Colors -> CSS and add this code
- Code:
#fa_toolbar{ display:none; }
#notif_list {
position: absolute!important;
background-color: #E0E0E0;
display: block;
right: 100px;
padding: 15px 20px 0 20px;
border-radius: 5px;
border: 1px solid #969696;
box-shadow: 0 0 0 1px #EAEAEA inset, 0 7px 5px -5px #DEDEDE;
}
ul.navlinks{
border:none;
}
#notif_list hr{
display:none;
}
This will style your new notifications system a bit, to make it look better.
If you use PunBB, when you search, instead the old code, look for
- Code:
<li>{GENERATED_NAV_BAR}</li>
- Code:
<li class="clearfix">{GENERATED_NAV_BAR}</li>
- Code:
<td align="{MENU_POSITION}"{MENU_NOWRAP}>{GENERATED_NAV_BAR}</td>
Good luck,
levy
Re: Notifications on Nav Bar?
The bugs come only from my CSS style with the absolute position. You can style it very easly how you want. The HTML work perfectly, only a <li></li> added wrong.
Similar topics
» Notifications not appearing in drop down menu on toolbar, but they appear on Notifications page
» not getting notifications again
» Not getting any notifications
» Member tried to register; admin never received notification email
» Notifications
» not getting notifications again
» Not getting any notifications
» Member tried to register; admin never received notification email
» Notifications
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum