- Posts: 14
- Thank you received: 0
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Solved [Merged topic] Kunena Latest doesn't display posts to visitors
- RoB ReZNoR
-
Topic Author
- Offline
- New Member
-
sozzled wrote: Based on those values, if the same guest visits, from the same PC, and there's been a post made in between when they logged out and when they refreshed the page, they might see something on the "latest posts" module; most of the time the Kunena Latest module will show nothing. Choose a different value (e.g. last week, last month, etc.). If the cache is on, turn it off.
Kunena Latest module: Module Parameters ยป Time Period = Since last visit
The above setting is only useful (perhaps) for logged-in registered members, not for guest visitors. When you think about it, how would the system know when the same guest last visited your site when there is no record kept of that guest's "visit"?
i've changed it to one month and now guests can see the posts
thanks for the help
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Can guests view topics in forum itself?
Have you any posts written in last month? (another setting)
Please Log in or Create an account to join the conversation.
But after experimenting with the category permissions when I change it from "User Groups" to "Access Level" it suddenly works!
Please Log in or Create an account to join the conversation.
There are 4 fields for user groups; primary & secondary group/children. Both are effective, so if you have wrong group in secondary field, all users can see the topics.
Please Log in or Create an account to join the conversation.
- claudiodestasio
-
- Offline
- New Member
-
- Posts: 10
- Thank you received: 0
I have a similar issue. With cache activated the module kunena latest don't show latest post to visitors but only to registered members. Visitors see an old cached version never refreshed. I have to manually clear the cache!
I don't know PHP programming but i have solved the issue modyfing mod_kunenalatest.php removing the "basic caching" fo visitors in this way:
// Add basic caching for visitors (3 minutes)
$klatest = new modKunenaLatest ( $params );
// $user = JFactory::getUser();
// if (!$user->id) {
// $cache = JFactory::getCache('mod_kunenalatest', 'output');
// $cache->setLifeTime(180);
// if ($cache->start(md5(serialize($params)), 'mod_kunenalatest')) return;
// }
$klatest->display();
// if (!$user->id) {
// $cache->end();
// }
The forum is:
www.studiodestasio.it/forum
Ideas?
Please Log in or Create an account to join the conversation.