Hello, currently implementing this on my forum's mobile style, and have a pretty simple question. Currently, for PMs, we have an icon at the top that is yellow when the user has new PMs (in place of a notifications drop down), exact code as follows:
Code:
<vb:if condition="$vbulletin->userinfo[pmunread]>0">
<a id="newpm" href="private.php?{vb:raw session.sessionurl}">
<img border="0" src="new_pm.gif"></a>
<vb:else />
<a href="private.php?">
<img border="0" src="pm.png"></a>
</vb:if>
Basically, I'm wondering if Tagging (and now Quoting) has a variable that will function in the same way as "
$vbulletin->userinfo[pmunread]>0" in the code above? I want to have a "tag" button next to the PM button, that will function in the same way (yellow when new tags), as my users absolutely love user tagging and miss it a lot on my mobile style! Currently there is a button that goes to the tags page, but obviously, they just have to check back for new tags rather than getting an alert.
Thanks in advance to anyone who can help!