Current time: 05-24-2012, 08:44 AM Hello There, Guest! (LoginRegister)


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Laatste forum posts op homepage
12-08-2008, 07:24 AM
Post: #1
Laatste forum posts op homepage
Weet iemand of er een mod beschikbaar is die de laatste forum berichten op de homepage kan laten zien, ik werk met MyBB 1.4.4

Genealogie - Forum
Visit this user's website Find all posts by this user
Quote this message in a reply
12-08-2008, 03:35 PM
Post: #2
RE: Laatste forum posts op homepage
hoe bedoel je alleen de titels of een paar hele berichten
Find all posts by this user
Quote this message in a reply
12-09-2008, 08:02 AM
Post: #3
RE: Laatste forum posts op homepage
Alleen de titels, dat is meer dan voldoende voor mij.

Genealogie - Forum
Visit this user's website Find all posts by this user
Quote this message in a reply
12-09-2008, 10:27 AM
Post: #4
RE: Laatste forum posts op homepage
Dat kun je gewoon doen met een simpel RSS scriptje dat je forum uitleest. Zo heb ik dat tenminste wel... Smile

Give a skeptic an inch and he'll measure it.
[Image: signature.php]
Find all posts by this user
Quote this message in a reply
12-09-2008, 10:48 AM
Post: #5
RE: Laatste forum posts op homepage
Kun je me ook een voorbeeld geven

Genealogie - Forum
Visit this user's website Find all posts by this user
Quote this message in a reply
12-09-2008, 03:11 PM
Post: #6
RE: Laatste forum posts op homepage
gebruik je joomla want daar in zit standaart al een rss reader daar mee is het op mijn site ook gedaan
Find all posts by this user
Quote this message in a reply
12-09-2008, 03:23 PM (This post was last modified: 12-09-2008 03:30 PM by Peter1960.)
Post: #7
RE: Laatste forum posts op homepage
Ik gebruik Mia cms, dit is een fork van mambo cms

Als je me kunt uit leggen hoe je dit in Joomla hebt gedaan.

Genealogie - Forum
Visit this user's website Find all posts by this user
Quote this message in a reply
12-09-2008, 03:47 PM
Post: #8
RE: Laatste forum posts op homepage
module toevoegen en dan feed kiezen volgens mij
Find all posts by this user
Quote this message in a reply
12-09-2008, 04:14 PM
Post: #9
RE: Laatste forum posts op homepage
Mocht je het in een zelfgemaakte site willen of toe willen voegen in de template van een cms, dit is wat ik gebruik:
PHP Code:
<?php
define 
(feed,'http://www.jewebsite.nl/forum/syndication.php?limit=15');
$xml_feed file_get_contents(feed);
$xml_praser xml_parser_create();
xml_parse_into_struct($xml_praser,$xml_feed,$xml_keys,$xml_index);
xml_parser_free($xml_praser);
for(
$i 0$i 6$i++){//$ < x x = 1 + aantal headlines
if($i == 0){echo '<a class="bar" href="'.$xml_keys[$xml_index['LINK'][$i]]['value'].'" target="_parent">Laatste 5 Forum posts</a><br>';}else{ echo '<a class="bar" href="'.$xml_keys[$xml_index['LINK'][$i]]['value'].'" target="_parent">'.$xml_keys[$xml_index['TITLE'][$i]]['value'].'</a><br>';}}
?>
De rss link kun je gewoon opvragen binnen het forum door op de rss syndication link te klikken.

Give a skeptic an inch and he'll measure it.
[Image: signature.php]
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)

Contact Us | MyBB | Return to Top | Return to Content | Lite (Archive) Mode | RSS Syndication