Support Forum

Firefox problem: last forum post does not display on my homepage

SS Simon Sanchez
Simon Sanchez
Member

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]

4 Answers

New Answer

SS Simon Sanchez
Simon Sanchez
Member

Ok, we found this very strange, but it appears that I am the only one, with my admin account, that does not see the posts… I don’t know why, but as long as any other member can see this, we can consider this topic as “solved”! :)

 

If any one have any idea why I am the only one (admin) that doesn’t see the last forum post on my home page, I would be grateful…^^

YS Yellow Swordfish
Yellow Swordfish
Member

By default the list is not shown to forum admins. If youy want to see it as well you need to pass another argument to turn the option on as in…

show=5&admins=1

That should do it.