![]() |
|
Thread Tools |
#1
|
|||
|
|||
Members can see how many are subscribed to their thread
Does this mod exist? If not, someone interested in creating it?
No members have liked this post.
|
#3
|
||||||||
|
||||||||
You can do something like this: create a plugin using hook showthread_complete and this code:
Then edit the SHOWTHREAD template and use $subscribed_count where you want the count to appear, maybe like:
No members have liked this post.
Last edited by kh99; 29 Sep 2012 at 13:30. Reason: changed for vb3 |
#4
|
||||
|
||||
@ kh99 - How would you do this for vb4?
No members have liked this post.
|
#5
|
||||||||
|
||||||||
lol, I originally posted it for vb4 then noticed the request was posted in the vb3 section. Anyway, here it is for vb4:
No members have liked this post.
|
#6
|
||||
|
||||
lol ! Thank you so much kh99, I "did' notice the (Last edited by kh99 : Today at 06:30. Reason: changed for vb3 ) , let me try this out...brb..
--------------- Added 29 Sep 2012 at 15:21 --------------- Ok, I got the following: The following error occurred when attempting to evaluate this template: Invalid Tag Nesting This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish. I am trying to add it right below the (Thread Information Block) and the code for that looks like this: <div id="thread_info" class="thread_info block"> <vb:if condition="$show['activeusers']"> <h4 class="threadinfohead blockhead">{vb:rawphrase thread_information}</h4> <div id="thread_onlineusers" class="thread_info_block blockbody formcontrols"> <div class="inner_block"> <h5>{vb:rawphrase users_browsing_this_thread}</h5> <div> <p>{vb:rawphrase users_currently_browsing_x_y_z, {vb:raw totalonline}, {vb:raw numberregistered}, {vb:raw numberguest}}</p> <ol class="commalist"> <vb:each from="activeusers" value="row"> <li><a class="username" href="{vb:link member, {vb:raw row}}">{vb:raw row.musername}</a>{vb:raw row.invisiblemark}{vb:raw row.buddymark}{vb:raw row.comma}</li> </vb:each> </ol> </div> </div> </div> </vb:if> Something missing here? --------------- Added 29 Sep 2012 at 15:28 --------------- Ok, I got the code in but nothing will display. I did make sure someone is subscribed to the thread and nothing. No members have liked this post.
|
#7
|
||||
|
||||
It seems to work for me, like if I add it here (showing only the end of the above code):
If you're trying to put it somewhere else you'll have to show us exactly what you're doing. No members have liked this post.
|
#8
|
|||
|
|||
Is it your thread? The <vb:if> makes it so it only displays if you started the thread.
No members have liked this post.
|
#9
|
||||
|
||||
No, it's not my thread.
So what's the code so it shows on any thread? --------------- Added 29 Sep 2012 at 15:36 --------------- Ok, I am trying to add it here......Marked in red.... <!-- / next / previous links --> </vb:if> <div id="thread_info" class="thread_info block"> <vb:if condition="$show['activeusers']"> <h4 class="threadinfohead blockhead">{vb:rawphrase thread_information}</h4> <div id="thread_onlineusers" class="thread_info_block blockbody formcontrols"> <div class="inner_block"> <h5>{vb:rawphrase users_browsing_this_thread}</h5> <div> <p>{vb:rawphrase users_currently_browsing_x_y_z, {vb:raw totalonline}, {vb:raw numberregistered}, {vb:raw numberguest}}</p> <ol class="commalist"> <vb:each from="activeusers" value="row"> <li><a class="username" href="{vb:link member, {vb:raw row}}">{vb:raw row.musername}</a>{vb:raw row.invisiblemark}{vb:raw row.buddymark}{vb:raw row.comma}</li> </vb:each> </ol> </div> </div> </div> {vb:raw subscribed_count} subscribed to this thread </vb:if> {vb:raw similarthreads} {vb:raw template_hook.showthread_after_activeusers} <vb:if condition="$show['tag_box']"> <h4 class="threadinfohead blockhead">{vb:rawphrase tags_for_this_thread}</h4> <div id="thread_tags_list" class="thread_info_block blockbody formcontrols"> <div class="inner_block"> <vb:if condition="$show['manage_tag']"> <a id="tag_edit_link" href="threadtag.php?{vb:raw session.sessionurl}t={vb:raw thread.threadid}" class="textcontrol" style="float:{vb:stylevar right}; font-size:11px; margin:10px;">{vb:rawphrase edit_tags}</a> </vb:if> <div id='tag_list_cell'> {vb:raw tag_list} </div> <p> <a href="tags.php{vb:raw session.sessionurl_q}">{vb:rawphrase view_tag_cloud}</a> </p> </div> </div> </vb:if> --------------- Added 29 Sep 2012 at 15:39 --------------- This is what I get: ![]() No members have liked this post.
|
#10
|
||||
|
||||
That should work, but I forgot that you'd also need to remove the if from the plugin code, like:
No members have liked this post.
|
#11
|
||||
|
||||
HA! yes it works now.
I am going to bug you with one more question if you don't mind. How would you do it to show exactly who is subscribed to the thread just like who is currently browsing the thread? No members have liked this post.
|
#12
|
||||||||
|
||||||||
You can try this:
and in the SHOWTHREAD template:
And I know it doesn't give you colored user names or show you which ones are logged in or are friends. If you really want any of that I'll have to work on it a little later. Edit: Well, now it does color the username, which turned out to be pretty easy. I think that matches what's in the other lists in the info, so I probably won't add anything else unless someone really wants it. No members have liked this post.
Last edited by kh99; 29 Sep 2012 at 16:47. |
#13
|
||||
|
||||
Nice! Ok let me try it....brb...
No members have liked this post.
|
#14
|
||||
|
||||
Yeep! that works perfect, thanks a lot kh99!
When ever you get to it if you can add the colored names or show you which ones are logged in or are friends, but this is fine. Once again thanks a lot! No members have liked this post.
|
#15
|
|||
|
|||
I updated the above so it will display the colored usernames. (There's only one small change to the template code, where subscriber.username is changed to subscriber.musername, so you don't have to copy over the entire template code block if you've made other changes to it).
As I mentioned, I don't think I'll add the other things unless someone really has a strong desire for them (I don't think the other lists in that section have Invisible/logged in/friend marks, do they?) No members have liked this post.
|
![]() |
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Banned members automatically stop receiving email notification on subscribed threads | Erwin | vBulletin 2.x Full Releases | 19 | 01 May 2005 03:14 |
«
Previous Thread
|
Next Thread
»
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
Thread Tools | |
|
|
New To Site? | Need Help? |
All times are GMT. The time now is 20:09.