The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
Hello,
I am trying to convert RSS feedback from the forums into HTML to my front page of my website, just like www.totalbf2.com did, when i viewed source, I noticed that he is using XML, RSS, as well as Javascript for that... I cant seem to figure the code i must put on my main homepage website, my website is www.totalfrag.com/test/ What should the code be so I can put this http://totalfrag.com/forums/externa...=rss&forumids=4 into html to the front page? Thanks Alot! Scorpion |
#2
|
||||
|
||||
![]()
This will show the last 5 threads in Forum "1" with the thread creator.
external.php?type=JS&forumids=1&limit=5&orderby=lastpost There is tons of different data you can pull per thread. (The EX: link is fake) This is crude, but you can make a template around the data. EX: + Site Upgrade Time (Zachariah) Code:
<script type="text/javascript" src="http://www.yoursite.com/forums/external.php?type=JS&forumids=1&limit=5&orderby=lastpost"></script> <script type="text/javascript"> URL = "http://www.yoursite.com/forums/"; i =0 ; for (t in threads) { document.write(' + <font size="1"><a href="', URL, 'showthread.php?t=', threads[t].threadid, '" target="_self"><span style="text-decoration: none">', threads[t].title, '</span></a> (', threads[t].poster, ')</font><br />'); } </script> Quote:
|
#3
|
|||
|
|||
![]()
Alright, Ill start working on them and see if its going to work or not...Thank You!
Alright, I am checking http://www.vbulletin.com/forum/showp...58&postcount=1 because I think this is what i'm looking for... I'm quite confused. Which one should I use? or where do I put all these codes at? Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <title>External JS Printing</title> </head> <body> <script type="text/javascript" src="http://www.iris-studios.com/gkwc/external.php?type=js"></script> <script type="text/javascript"> <!-- for (var i = 0; i < threads.length; i++) { document.write('<a href="http://www.iris-studios.com/gkwc/showthread.php?t=' + threads[i]['threadid'] + '">' + threads[i]['title'] + '</a> <em>Posted on: ' + threads[i]['threaddate'] + ' by ' + threads[i]['threadtime'] + '</em><br />'); } //--> </script> </body> </html> Code:
<script type="text/javascript" src="http://www.iris-studios.com/gkwc/external.php?type=js"></script> Code:
<script type="text/javascript"> <!-- for (var i = 0; i < threads.length; i++) { document.write('<a href="http://www.iris-studios.com/gkwc/showthread.php?t=' + threads[i]['threadid'] + '">' + threads[i]['title'] + '</a> <em>Posted on: ' + threads[i]['threaddate'] + ' by ' + threads[i]['threadtime'] + '</em><br />'); } //--> </script> Please guide me, Thank you! |
#4
|
||||
|
||||
![]()
<a href="http://www.vbulletin.com/docs/html/main/vboptions_externaldataprovider_implementing" target="_blank">http://www.vbulletin.com/docs/html/m...r_implementing</a>
|
#5
|
|||
|
|||
![]()
I tried that earlier today, but it didnt display what I hoped for. How do I make it display the exact section of the forums, and display the latest exact number of posts on a custom html?
Code:
<script src="http://www.yourdomain.com/forumpath/external.php?type=js" type="text/javascript"></script> <script type="text/javascript"> <!-- for (i in threads) { document.writeln(threads[i].title + " (" + threads[i].poster + ")<br />"); } //--> </script> http://www.totalfrag.com/forums/forumdisplay.php?f=4 Thanks Alot!! |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|