<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Module: User Tagging</title>
        <description>This module allows you to setup rules for creating custom template variables, based on a user&#039;s state / properties. This can for example be used to add some custom user status (e.g. &quot;rookie&quot;, &quot;regular&quot;, &quot;veteran&quot;) to the users, based on their post count and/or registration date. Assignments can be done to authors on the read pages, to the user on the profile pages and to the logged in Phorum user on every page.

[b]You can setup user tags, based on the following parameters:[/b]

* The total number of posts that a user made
* The number of posts that a user made in a vroot
* The number of posts that a user made in a forum
* The registration date for the user
* The date of last activity for the user
* The type of user (user, moderator, admin)
* The user status (active or deactivated)
* The user id or username (a list of user ids or usernames is possible too)
* Whether a user is in a certain group
* Whether the user is on a ban list or not

[b]Info about post count based tagging:[/b]

For post count tagging, the module will keep track of message post counts
at various levels. It will keep track of the global post count, the post
count per vroot and the post count per forum. In the rules that you setup,
you can specify what level the module should consider for that rule. Using
this, it is for example possible to define a rule that will only look at the
number of messages that the user posted in the active forum.

If you have forums that you do not want to include in the post counts,
then you can configure these in the module settings. This might be useful
if you have something like a sandbox forum, that your users can use for
testing out forum features. Since this is not a serious forum, counting
the messages as real posts might not be appropriate.


A detailed hands-on example of how to use this module is provided in the README file in the package.

[code]
Changelog:
----------

2010-06-19 v1.0.7

    - Implemented ban list checking as a user matching criterium. Thanks
      to Phil Connolly for the idea and for writing up the patch.

2009-10-21 v1.0.6

    - Updated the module to be compatible with the new CSRF protection
      features in Phorum 5.2.

2008-10-17 v1.0.5

    - Always show the group criterium, so we can show users that there
      is such option available. Thanks to Ulf Dunkel for the suggestion.

2008-08-09 v1.0.4

    - Fixed the greater-than-or-equal comparisons. They were implemented
      as greater-then in the code.

2008-07-31 v1.0.3

    - Added an option for tagging the authors and recent authors that
      are shown on the message list pages.

2008-06-11 v1.0.2

    - Moved the tagging for the active Phorum user to the
      common_post_user hook. This way, the template variables
      can be setup early enough to give other modules access
      to them.

    - Added a new user matching option, to match users by their group.

    - Improved some wordings on the settings page to make the
      options easier to understand.

2008-02-05 v1.0.1

    - Removed some stale code which resulted in undefined index warnings
      on the read page.

2008-02-03 v1.0.0

    - Initial release
[/code]</description>
        <link>https://www.phorum.org/support/read.php?62,127719,127719#msg-127719</link>
        <lastBuildDate>Sun, 13 Sep 2026 15:16:34 -0500</lastBuildDate>
        <generator>Phorum 6.0.4</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,156223#msg-156223</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,156223#msg-156223</link>
            <description><![CDATA[ I can&#039;t get the &quot;{IF USER-&gt;POST_STATUS &quot;lurker&quot;}&quot; to work in header.tpl<br />
<br />
I have this code in header.tpl:<br />
<br />
<br />
<pre class="bbcode">
	{IF USER-&gt;POST_STATUS &quot;lurker&quot;}
	&lt;div style=&quot;background: #eee; padding: 4px 7px; border-radius: 6px; border: solid 1px #fbb;&quot;&gt;
		You&#039;ve registered, but have not posted anything yet. Feel free to start a new thread in the forum of your choice.
	&lt;/div&gt;
	{/IF}
	{IF NOT LOGGEDIN}
	&lt;div style=&quot;background: #eee; padding: 4px 7px; border-radius: 6px; border: solid 1px #fdd;&quot;&gt;
		Want to participate? Click on the login link to reach the registration form.
	&lt;/div&gt;
	{/IF}</pre>
<br />
And I have defined a rule for &quot;lurker&quot; that fills the variable POST_STATUS.<br />
<br />
The &quot;IF NOT LOGGEDIN&quot; portion works fine, but the first portion displays nothing. Any ideas where I might be going amiss with this?]]></description>
            <dc:creator>Kenneth John Odle</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 16 Nov 2015 21:08:39 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,151243#msg-151243</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,151243#msg-151243</link>
            <description><![CDATA[ Hi Maurice<br />
<br />
After much searching, it sounds like your module does kinda what I want. Except, instead of a HTML tag, I&#039;d like to assign the user into a group. Are you interested in a feature like this? If I can&#039;t find anything else that fits what I&#039;m trying to do, I&#039;ll probably make modifications to your module, and ether submit a patch, or fork it, if thats ok with you.<br />
<br />
Concept:<br />
Users with &lt;10 approved posts, are in group &quot;Newbies&quot;<br />
Users with &gt;= 10 approved posts are in group &quot;Regulars&quot;<br />
<br />
Then using other mods, Newbies group will be always moderated. It sounds like your user tagging code can be run at different times (page loads), so it should be able to change the groups ok. If I do something like &quot;&lt;10 posts &amp;&amp; not in group newbies, change to group Newbies&quot; then it won&#039;t be trying to change the group all the time.<br />
<br />
Thanks<br />
<br />
Tim]]></description>
            <dc:creator>purewhite</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 19 Apr 2012 16:09:48 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,147129#msg-147129</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,147129#msg-147129</link>
            <description><![CDATA[ Hi folks, <br />
<br />
Can anyone point me in the right direction to enable the users tag to be shown on the topic list page. I would like to indicate the the users tag for the topic author and last post. Essentially where a username is displayed so should the tag.<br />
<br />
I understand where in the list.tpl i need to add information but im not sure how to grab the tag info to put it in place.<br />
<br />
Thanks<br />
<br />
Isaac]]></description>
            <dc:creator>iliney</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 13 Dec 2010 04:34:24 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,145960#msg-145960</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,145960#msg-145960</link>
            <description><![CDATA[ Hi Maurice Makaay,<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>Maurice Makaay</strong><br />
Did you recalculate the post counters?</div></blockquote>
Yes, I did.<br />
Regards,<br />
Sreenadh]]></description>
            <dc:creator>Sreenadh OG</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 28 Sep 2010 03:01:24 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,145954#msg-145954</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,145954#msg-145954</link>
            <description><![CDATA[ I don&#039;t know why it won&#039;t work for you if you follow the README file to the letter. Yes, the module automatically creates the template variable based on the criteria that you setup in the rule. You suggested custom profile variables, but those have nothing to do with the variables that this module sets. These are simply template variables that are added to the template data.<br />
<br />
Did you recalculate the post counters?]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 27 Sep 2010 16:42:14 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,145949#msg-145949</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,145949#msg-145949</link>
            <description><![CDATA[ Hi Maurice Makaay,<br />
   I followed the read me completely and set up those rules, but even after that nothing shows up anywhere (possibly because the POST_STATUS variable is not getting set). I can send you all the screen shots of my control panel and the code changes - what else can I say. :(<br />
 Note that I have already set up almost every module (except a few such as User notes, User Tagging, Forum Subscriptions etc) successfully and won&#039;t be committing such a simple mistake. :(<br />
  Do you mean to say that the module AUTOMATICALLY defines and populates the Variable I provide in &quot;The template variable name to fillHelp&quot; text box? I have already done that and set up all the rules as instructed. If it is so why the too the POST_STATUS variable is not getting populated with data for me? :( Any guess?<br />
Regards,<br />
Sreenadh]]></description>
            <dc:creator>Sreenadh OG</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 27 Sep 2010 10:11:48 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,145946#msg-145946</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,145946#msg-145946</link>
            <description><![CDATA[ Did you actually read the README? There is a very extensive example section in there that describes a possible set of recipes to use for this module. Setting up the template variable is done by those recipe rules. It is not in there by default. My guess is that you misunderstood the use of this module and did follow only half the README.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 27 Sep 2010 09:49:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,145932#msg-145932</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,145932#msg-145932</link>
            <description><![CDATA[ Can anyone help me on this please....]]></description>
            <dc:creator>Sreenadh OG</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 27 Sep 2010 03:08:03 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,145903#msg-145903</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,145903#msg-145903</link>
            <description><![CDATA[ Hi, <br />
  I was trying to setup this module, and has edited every template as suggested. I have enabled the module and still nothing shows up anywhere! It is not working.<br />
 I checked what could be the problem by just putting and else condition to the if (used by the module in every template) and found that the POST_STATUS custom variable used by module is not defined or empty. The readme file says &quot;This module allows you to setup rules for creating custom template variables, based on a user&#039;s state / properties.&quot;<br />
  Am I supposed to define such &quot;template variables&quot; anywhere? Or is that referring to some  &quot;Custom Profile variable&quot; that I should define? <br />
 I am bit confused - can  anyone please help me on this. <br />
Regards,<br />
Sreenadh]]></description>
            <dc:creator>Sreenadh OG</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sun, 26 Sep 2010 08:35:39 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,145588#msg-145588</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,145588#msg-145588</link>
            <description><![CDATA[ Hi guys, <br />
I have set up several tags based on post count and it all works fine but i also want to select several users and set their tag as something different not based on post count. <br />
<br />
I have tried adding them all to a group and setting a rule to say members of this group should have a certain tag. I have also selected them individually by username. However the post count rule they match seems to always override the tag.<br />
<br />
How do you set the priority of a rule or do all rules need to be exclusive?<br />
<br />
I expect im just going about it the wrong way.<br />
<br />
One last thing how to you find a userid is it in the sql db or somewhere in the admin pages?<br />
<br />
Thanks for your time.<br />
<br />
Isaac]]></description>
            <dc:creator>iliney</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 06 Sep 2010 05:57:35 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,144920#msg-144920</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,144920#msg-144920</link>
            <description><![CDATA[ Thanks for the idea and patch.<br />
I included it in version 1.0.7 of the module.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sat, 19 Jun 2010 04:37:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,144914#msg-144914</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,144914#msg-144914</link>
            <description><![CDATA[ Maurice, this is an awesome module, thanks for creating it!<br />
<br />
I made an addition to it, and am posting it in case you or anyone finds useful.  I added a match for when a user_id is found in a ban list (or not in a ban list).  I sometimes use the the ban list on user_id option to temporarily ban misbehaving users from posting, and recently thought it would be useful to make the user tagging recognize these.  I attached the hack as diff files in the ban_list.zip.<br />
<br />
-phil.<br />
<br />
<i>mmakaay: delete the attached diff, it is now part of the release package</i>]]></description>
            <dc:creator>Phil Connolly</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Fri, 18 Jun 2010 14:45:44 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,142236#msg-142236</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,142236#msg-142236</link>
            <description><![CDATA[ I&#039;m glad that you found it. The problem already sounded like some code was either hacked up or not up-to-date. I hope all the rest will be a smooth ride from here.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sat, 05 Dec 2009 16:24:43 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,142233#msg-142233</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,142233#msg-142233</link>
            <description><![CDATA[ Hi Maurice,<br />
<br />
Line 79 was the offending line of code. I just checked that against the latest version variable should be $message[&#039;user&#039;]..<br />
<br />
I inherited the forum of another person who had made some mods, strange that the problem only appeared when the forum was copied between servers.<br />
<br />
Thanks for your help and the time you spent on this. It&#039;s much appreciated.]]></description>
            <dc:creator>tankslap</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sat, 05 Dec 2009 14:34:15 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,142228#msg-142228</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,142228#msg-142228</link>
            <description><![CDATA[ Exactly on what line do you see $message[&#039;author&#039;] in user_tagging.php? It does not occur in my version of the script.<br />
<br />
Additionally, I still don&#039;t see how the admin field would get the first letter of the author name in it because of this module. This module only inspects the contents of the admin field and never sets it.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sat, 05 Dec 2009 04:50:36 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,142227#msg-142227</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,142227#msg-142227</link>
            <description><![CDATA[ Hi Maurice,<br />
<br />
I have tracked the problem down. As suggested I have disabled all other modules to ensure that I am only looking at the phorum core code and the user tagging module.<br />
<br />
In the user_tagging.php the calling function to user_tagging_process_rule is passing through $message[&#039;author&#039;] this value appears to contain only the username, which would explain the characters I was getting as they are the first letter of the username. <br />
I have tweeked the code the call  $user = phorum_api_user_get($message[&#039;user_id&#039;], TRUE); and pass $user as the second parameter into the process_rule function and all is working as expected, just a little slower than it should..]]></description>
            <dc:creator>tankslap</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sat, 05 Dec 2009 03:55:41 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,142206#msg-142206</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,142206#msg-142206</link>
            <description><![CDATA[ So it seems that some code is setting the admin field incorrectly and I can assure you that it is not the core Phorum code.<br />
<br />
Try disabling modules to see what module is breaking the admin field for you.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Fri, 04 Dec 2009 10:28:52 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,142197#msg-142197</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,142197#msg-142197</link>
            <description><![CDATA[ Hi Thomas,<br />
<br />
Yes I have checked the database, assuming that the $user[&#039;admin&#039;] variable is populated from the admin column then the column definition is tinyint and obviously all values are numeric.]]></description>
            <dc:creator>tankslap</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Fri, 04 Dec 2009 03:14:31 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,142196#msg-142196</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,142196#msg-142196</link>
            <description><![CDATA[ did you check it in the database?]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Fri, 04 Dec 2009 02:58:08 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,142195#msg-142195</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,142195#msg-142195</link>
            <description><![CDATA[ Hi Marice, <br />
<br />
Thanks for the reply, the contents of the $user[&#039;admin&#039;] variable is a character, for the three user records I am testing with I get D, d, and k]]></description>
            <dc:creator>tankslap</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Fri, 04 Dec 2009 02:56:43 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,142193#msg-142193</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,142193#msg-142193</link>
            <description><![CDATA[ What is the content of $user[&#039;admin&#039;]? That one should either be 0 (zero) or 1 (one).]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 03 Dec 2009 17:54:34 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,142191#msg-142191</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,142191#msg-142191</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Maurice Makaay</strong><br />
The post counts are stored in the custom profile field &quot;mod_user_tagging&quot;.<br />
You can remove that field and then recreate it (make sure that you use the exact same field settings).<br />
However, rebuilding the post counts should reset the counters as well.</div></blockquote>
<br />
Hi Maurice,<br />
<br />
I&#039;m still struggling to get this module to work. I have spent some time looking into the code and have found something that I am not sure is correct and would appreciate your input if possible.<br />
<br />
EDIT: Sorry, should clarify. The paragraph below relates to the user_tagging_process_rule function.<br />
<br />
Within the api.php there is a switch block for the rule scope, for all my rules this is going into the GLOBAL case. However, looking at the following code I would expect $count to return an int and it appears to be returning a character. Incidentally, the character value returned in the $count variable is the same as held in $user[&#039;admin&#039;].<br />
<br />
Is this correct or is my user table corrupted ??<br />
<br />
Thanks, Jon.]]></description>
            <dc:creator>tankslap</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 03 Dec 2009 16:29:54 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,141375#msg-141375</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,141375#msg-141375</link>
            <description><![CDATA[ Works like a champ thanks]]></description>
            <dc:creator>djdubuque</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 21 Oct 2009 14:23:37 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,141373#msg-141373</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,141373#msg-141373</link>
            <description><![CDATA[ What you kind of left out of the story was the fact that you were getting admin timeout warnings in between, right? If you did, then the new 1.0.6 release of the module should fix this issue for you. Otherwise, give it a try anyway. 1.0.6 works for me on Phorum 5.2.13.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 21 Oct 2009 14:08:33 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,141371#msg-141371</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,141371#msg-141371</link>
            <description><![CDATA[ The issue is I can not delete a rule that was setup in this mod.  There is the following buttons<br />
<br />
[code=&quot;html4strict&quot;]<br />
Edit| Copy| Delete<br />
[/code]<br />
<br />
I should be able to select delete and delete that rule.  But it doesn&#039;t, it goes all the way to &quot;Are you sure you want to delete the rule &quot;Lurker&quot;? &quot; Yes No<br />
<br />
I select yes and the rule is still there.]]></description>
            <dc:creator>djdubuque</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 21 Oct 2009 13:48:47 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,141370#msg-141370</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,141370#msg-141370</link>
            <description><![CDATA[ It would help to describe the issue.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 21 Oct 2009 13:42:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,141367#msg-141367</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,141367#msg-141367</link>
            <description><![CDATA[ I&#039;m having an issue with deleting a user tag in the admin mod area.  Any help out there?  Where does the script post the tags that were created?]]></description>
            <dc:creator>djdubuque</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 21 Oct 2009 13:22:05 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,139272#msg-139272</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,139272#msg-139272</link>
            <description><![CDATA[ The post counts are stored in the custom profile field &quot;mod_user_tagging&quot;.<br />
You can remove that field and then recreate it (make sure that you use the exact same field settings).<br />
However, rebuilding the post counts should reset the counters as well.]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 16 Jul 2009 13:29:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,139127#msg-139127</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,139127#msg-139127</link>
            <description><![CDATA[ Is there anyway of completely un-installing this mod and all of its data so i can re-install it from scratch ??<br />
<br />
I&#039;ve tried find where the post counts are stored for the mod and can see it, I&#039;ve tried deleting the rows from the phorum_settings table, but no change as yet...]]></description>
            <dc:creator>tankslap</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 06 Jul 2009 15:13:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,127719,138898#msg-138898</guid>
            <title>Re: Module: User Tagging</title>
            <link>https://www.phorum.org/support/read.php?62,127719,138898#msg-138898</link>
            <description><![CDATA[ The rules are setup with the Template variable being USERRANK and the HTML code just the text of the level, there is no additional formatting.<br />
<br />
The read.tpl contains the following section:<br />
<br />
<pre class="bbcode">
{IF MESSAGES-&gt;user-&gt;USERRANK}
    &lt;div&gt;&lt;strong&gt;Rank:&lt;/strong&gt; {MESSAGES-&gt;user-&gt;USERRANK}&lt;/div&gt;
{/IF}
</pre>]]></description>
            <dc:creator>tankslap</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Fri, 26 Jun 2009 02:42:09 -0500</pubDate>
        </item>
    </channel>
</rss>
