- Posts: 3
- Thank you received: 1
Kunena 6.3.8 Released
The Kunena team has announce the arrival of Kunena 6.3.8 [K 6.3.8] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x/5.2.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 and issues discovered during the last development stages of K 6.3
Note: Please go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated.
The topics in this category are for historical interest only. Owing to the structural changes that occurred in K 1.7, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.
Question How to hide posts to unregistered member in K 1.7.2?
Please Log in or Create an account to join the conversation.
(1) The subject refers to K 1.6. K 1.6 is not supported. Please upgrade to K 1.7.2.
(2) Use the "hide" BBcode tag like this:
Part of the message is hidden for the guests. Please log in or register to see it.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
sozzled wrote: G'day, pocketer, and welcome to Kunena.
(1) The subject refers to K 1.6. K 1.6 is not supported. Please upgrade to K 1.7.2.
(2) Use the "hide" BBcode tag like this:
Part of the message is hidden for the guests. Please log in or register to see it.
Hi, thanks for your reply.
I upgraded to K 1.7.2 just now. Is there other ways to do it other than using BBcode?
something like
Because i want to apply it for all of the posts. Please advise!
Code:$user =& JFactory::getUser(); if($user->get('guest') == 1) : ?> <div class="kmsgbody"> <div class="kmsgtext"> <-------------(for the rest of the replies) <?php echo "Please login or register" ?> </div> </div> <?php endif; ?> <?php if($user->get('guest') == 0) : ?> <div class="kmsgbody"> <div class="kmsgtext"> <---------------(only show 1st post) <?php echo ??? ?> <-------------(how to retrieve the 1st message?) </div> </div>
Please Log in or Create an account to join the conversation.
(1) Use the
Part of the message is hidden for the guests. Please log in or register to see it.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
i added
Thanks anyway
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.