Quote:
Hello!
how and where adjust numbers of threads - i get 15 threads with names and 45 - named - undefined -
reg
|
This is really pulling from external.php, it is listing all of what is on your rss feed unless you can shorten the list in external.php you cant shorten the list. sorry
Quote:
this is nice..
can i add this code just under my domain.. not under forum..
i tried but itz not working
but when i added like forum/text.html /// itz working..
|
I am guessing your forum is within a folder on its own and your site is outside this folder, that means you will need to change the root from here
Code:
src="external.php?type=js">
to here
Code:
src="/forums/external.php?type=js">
forums needs to be the name of the folder that vbulletin is in
also, you need to change this
Code:
document.writeln("<a href=\"showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a><br />");
to something like this
Code:
document.writeln("<a href=\"forums\showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+" </a><br />");
I cant be sure that is the exact format because I dont know javascript that well, but it should be something like that, dont forget to replace forums with whatever the folders name is that vbulletin is in