Hello everyone,
I would like to display the last 5 forum posts on the homepage of my website (of course this homepage is not a part of the forum).
I used “sp_forum_api_support();”
It works with Chrome, but does not display with Firefox, do you have any idea why? Maybe I should include a page, or manage something in the admin area of the forum?
My integrated code in my home page is this one:
[CODE PHP]
<?php
sp_forum_api_support();
sp_RecentPostList(‘show=5’, __sp(‘Unread and recently updated topics’));
?>
[/CODE PHP]