MyBB Community Forums

Full Version: Recent Threads On Index [Updated 02-09-21]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
Is there any way to show only the latest topics without reliving the post?

So you do not return the item first in the list if they respond on the issue
(2015-02-14, 08:09 PM)Eldenroot Wrote: [ -> ]But it works fine with mod for mybb 1.6 (with changed compatibility like it works on mybb 1.8 without problem). maybe you can check the code

permissions works fine in this mod - http://mods.mybb.com/reviews/recent-posts-forum-index maybe it could help you to find a solution

I'll look at it and test out the solution that plugin uses when I have the time. Feel free to submit a PR if you can figure it out and it works.

(2015-02-17, 06:29 AM)metalgearxd Wrote: [ -> ]Is there any way to show only the latest topics without reliving the post?

So you do not return the item first in the list if they respond on the issue

Not unless you want to edit the plugin file.
Even using get_inactive_forums it fails. I think somehow it relates to https://github.com/mybb/mybb/issues/329
I would be really good. Many users complain and send me PMs - "I cannot see new replies in the recent thread box, please fix it... etc."

I really like your plugin - it is lightweight and mainly it has ajax for refereshing new posts. I am waiting for a new version, I hope you will find a way how to fix it. If not I can still revert to an older plugin, but your is better Smile
Since the refresh loads the correct set of threads, what if the function gets called right away and then continue to refresh at the interval?
Personally I really like your plugin I would like to place the avatar as shown in the latest forum topics could add it to your plugin sorry for mi bad english used traductor
That is already an option under Recent thread settings.
(2015-02-17, 10:47 PM)dragonexpert Wrote: [ -> ]Since the refresh loads the correct set of threads, what if the function gets called right away and then continue to refresh at the interval?

So first refresh immidiately after load -> it should fix the problem. Next refresh in 30 sec (like now)
ACp->Styles & Templates->Templates->Global Templates->recentthread_headerinclude.

After the line that starts with var stopper=, add this code:
$(document).ready(function() { refresh_recent_threads();  });
how do i refresh the whole plugin rather than just update a new thread?
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42