Working fine for me on 4.2.5
I added the plugin
Hook: process_tempates_complete
Title: Notifications
Order: 5
Code:
PHP Code:
$vbulletin->userinfo['notifications_total'] = $notifications_total;
Then in FORUMHOME, FORUMDISPLAY, SHOWTHREAD I added the following code before the title tag.
Code:
<vb:if condition="$show['member']">
<script type="text/javascript">
setInterval(function() {
var data = "{vb:raw relpath}";
$.get(document.location.toString()).then(function (data){
//find and set the title of the page
document.title = data.match(/<title>(.+)<\/title>/)[1];
});
}, 30000);
setTimeout(function() {
var data = "{vb:raw relpath}";
$.get(document.location.toString()).then(function (data){
//find and set the title of the page
document.title = data.match(/<title>(.+)<\/title>/)[1];
});
}, 1000);
</script>
</vb:if>
Then edited the start of the title tag to add this.
PHP Code:
<vb:if condition="$show['member'] AND $bbuserinfo[notifications_total]">({vb:raw bbuserinfo.notifications_total}) </vb:if>
Forum home example below.
PHP Code:
<title><vb:if condition="$show['member'] AND $bbuserinfo[notifications_total]">({vb:raw bbuserinfo.notifications_total}) </vb:if>{vb:raw vboptions.bbtitle}</title>
Addition mods I'm using that work with this:
Subscribed threads in notifications
FractalizeR: Show items, awaiting moderation in notifications area
Advanced user tagging