MyBB Community Forums

Full Version: Help required
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i want to create a link button on header (view forum posts), when user click on it, it must show all threads of forum with order by date.
(it should fetch all the threads from day 1, not from my last login)

is there any builtin functionality in mybb or i required code?
That is how the basic forum works as-is. All threads listed in a single forum without any limits on date. If you want all posts from all forums listed by date then you need a plugin or edit core files to allow it.

if i click on "View New Posts", it only the threads which was posted after my login.
i want to perform some thing like that
$where_sql = "t.fid IN (4,5,6,7,8,9,10,11,12,13)";
i only want to fetch records from these forums.

but the problem is i also want to remove login time restriction. how to modify the whole query. ?? and in which file need to modify.
i have made my own plugin by viewing the code of another plugin Smile
may be a little work for php developer, but i am dotnet developer Toungue

i have made the simple changes, now plugin can retrieve all threads from specific category on page Smile

another requirement, i want when some one open my url, i want to show these posts on index page by default.
please check my forum
www.dotnetobject.com
and click on All posts, i want to show this result on index page by default