Quote:
Originally Posted by Eggie
Sorry, but does vbexternal.php and the vbexternal folder go into /public_html for my portal index I'm trying to create or in my /forums folder where vB is? I tried both but only get a blank page
|
Everything goes in your forums dir.
Quote:
Originally Posted by Milez
Any chance of pulling news from more than 1 forum ID? Please please.
|
Yes... Just let me know which function and i'll generate the code for you.
Quote:
Originally Posted by mathias
on newestthread I want to limit the characters how can I do that?
|
if you mean in the thread title....
change this:
Code:
'threadname' => $Thread['title'],
to this (the 20 is the number of characters to display):
Code:
substr($Thread['title'],0,20),