PDA

View Full Version : news system


spandexman
04-11-2007, 08:19 PM
is there a news system like the pluh news for vbulletin ? or does pluh news work with the latest version of vB still/

dj_melayu
04-11-2007, 10:37 PM
https://vborg.vbsupport.ru/showthread.php?t=137365
https://vborg.vbsupport.ru/showthread.php?t=144414
https://vborg.vbsupport.ru/showthread.php?t=133302
https://vborg.vbsupport.ru/showthread.php?t=138805
https://vborg.vbsupport.ru/showthread.php?t=127008

You have the right to chose what you want and next time don't forget to use search! :)

InfoNirvana
04-11-2007, 11:09 PM
Made By Mary News - https://vborg.vbsupport.ru/showthread.php?t=144166&highlight=vbNews

spandexman
04-12-2007, 12:59 AM
No, I dont think any of these have what I'm looking for,
I want to make it so like news from a forum is posted on the front page of my site which isn't apart of my forum.

If one of these had it then my bad.

dj_melayu
04-12-2007, 05:42 PM
I assumed u wanted the portal system like vbadvanced etc..Name it

Cooleyvol
04-12-2007, 06:38 PM
I use php scripts to pull news from certain forums for my site.

www.gridiron-glory.net

spandexman
04-12-2007, 07:51 PM
yes like Cooley, but where is a script like that? xD

Cooleyvol
04-12-2007, 08:53 PM
yes like Cooley, but where is a script like that? xD

My index page is written in php and calls the stories via an includes folder and the syntax in my index.php page.

This is what calls it on my index.php page:

<div id="news">
<?php output_News(3,36,750); ?>
</div>

The 3 tells it how many stories to show. The 36 is the forum id that I pull news from, and the 750 is the max number of characters the front page shows before it posts the 'read more' link.



The division id known as 'news' is defined in my includes/style_main.css file.

spandexman
04-12-2007, 09:08 PM
um...that cant be the whole code for it? <.<