View Full Version : news from 2-5
jhons
08-29-2005, 05:22 PM
Hi there I am not sure if this was asked before but I want to know if its possible to show on the main portal page news from X latest to Y latest message (for example the 2nd latest to the 5th latest)?
I want to make the latest one in one format and show the rest in a diffrent format.
thanks in advance
Brian
08-30-2005, 03:53 PM
Assuming you want to use the numbers 2 and 5, set the max number of posts to pull at 5, then look in your modules/news.php file for this code:
$newscount++;
And right below that add:
if ($newscount < 2)
{
continue;
}
jhons
08-31-2005, 10:05 AM
thanks I will give it a try
jhons
09-01-2005, 08:57 AM
I've created a copy of the news moudle I also added the change to the news.php file and renamed the new file to news2.php. In the copied module I have changed the File to Include to the news2.php but when I go to the cmps_index.php file I get this error:
Warning: main(./modules/news2.php): failed to open stream: No such file or directory in /includes/vba_cmps_include_bottom.php on line 392
Warning: main(./modules/news2.php): failed to open stream: No such file or directory in /includes/vba_cmps_include_bottom.php on line 392
Warning: main(./modules/news2.php): failed to open stream: No such file or directory in /includes/vba_cmps_include_bottom.php on line 392
What is wrong?
Brian
09-01-2005, 04:16 PM
According to that error, you don't have a file called news2.php in your modules folder.
vBulletin® v3.7.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.