Johm I am sorry bro, I assumed you would know what to do.
Go and make a new plugin in by going to your vb admin panel and click on Plugins & Products > Add New Plugin
Once in there you will find the fields to complete:
1. Product = vBulletin
2. Hooks Location = showthread_complete
3. Title = Members subscribed to thread (or any tittle you want to give it)
4. Execution Order = leave as is
5. Plugin PHP Code = enter the code here
6. Plugin is Active = yes
Once you do that go to your SHOWTHREAD template and look for the following:
Code:
<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>
Below that add this:
Code:
</BR>{vb:raw subscribed_count} subscribed to this thread</BR>
<vb:each from="subscribers" value="subscriber">
<a class="username" href="{vb:link member, {vb:raw subscriber}}">{vb:raw subscriber.musername}</a><vb:if condition="!$subscriber[is_last]">, </vb:if>
</vb:each>
And that is all buddy.