The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
latest threads by specific user with external.php
Hey there!
I've wanted to ask you guys if there any option to use the latest threads code as you see: HTML Code:
<script type="text/javascript" src="external.php?type=js"></script> <script language="" type="text/javascript"> <!-- for (var x in threads) { document.writeln("<img class=\"inlineimg\" src=\"$stylevar[imgdir_button]/lastpost.gif\" alt=\"\" border=\"0\" /> <a href=\"showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a> <span class=\"time\">($vbphrase[posted_by]: "+threads[x].poster+")</span><br />"); } //--> </script></div> what I mean is that the code will only show latest threads of a specific member of the forum. and will show it in public [in forumhome]. Thanks for the answers. |
#2
|
|||
|
|||
anyone?
|
#3
|
|||
|
|||
Maybe you could try:
HTML Code:
<script type="text/javascript" src="external.php?type=js"></script> <script language="" type="text/javascript"> <!-- for (var x in threads) { if(threads[x].userid == xx) { document.writeln("<img class=\"inlineimg\" src=\"$stylevar[imgdir_button]/lastpost.gif\" alt=\"\" border=\"0\" /> <a href=\"showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a> <span class=\"time\">($vbphrase[posted_by]: "+threads[x].poster+")</span><br />"); } } //--> </script></div> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|