Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] 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.

The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Question Can I use the userlist settings to control what is displayed in the user profile?

More
16 years 2 months ago - 16 years 1 month ago #41322 by kaoz22
Hi I have a problem with the data that are displayed when you open the profile. You see the name and user name. Used as administrator is my username and would not be very good for security including user names to those who use the forum. How can you remove that much data do not appear? I've tried in the administration of the forum, but I imagine it to be synchronized with the database because the sample joomla.

¡¡¡¡¡¡ to make it clear when I go out user name data, username, user group, connected, etc. ..... Wicker any forum until the admin and not very interesting for safety.

pd: I've tried disabling "no" Show username in the Settings Kunena (PLUGINS) but I keep it updated and continues with the same problem anyone can see the username and q are several other options were disabled.

Thank you expect speedy response :)
Last edit: 16 years 1 month ago by sozzled. Reason: Changed subject to improve search relevance

Please Log in or Create an account to join the conversation.

More
16 years 2 months ago #41326 by sozzled
I'm sorry, I don't fully understand your question. Would you like to post a screenshot that illustrates what data you would like changed or hidden from view? :)

Please Log in or Create an account to join the conversation.

More
16 years 2 months ago #41327 by kaoz22
thanks for help

Here I show I do not want to display: the user name.
because any forum user can see and so is very serious




thanks
I hope your answer

Please Log in or Create an account to join the conversation.

More
16 years 2 months ago #41328 by sozzled
What version of Kunena are you using and what Kunena template are you using?

Please Log in or Create an account to join the conversation.

More
16 years 2 months ago #41329 by kaoz22
Kunene version 1.5.9
Kunena template default_ex
joomla version 1.5.15

the true friend need this information to prevent users to observe the usernames of other members, as I said above and disable the checkbox as seen: here:

Please Log in or Create an account to join the conversation.

More
16 years 1 month ago #44284 by Amrit
Replied by Amrit on topic Re:Problems with profile data
Hi there kaoz22.

I hade the same problem as you, so I had a check around in the code.

The templates lack the code necessary to hide the username.

But it is easy to fix.

Open file summary.php. It is in folder components/template/default/plugins/fbprofile/

Find on row 71.
Code:
<tr class ="<?php echo $boardclass; ?>sectiontableentry1"> <td class = "td-1 fbm"><b><?php echo _KUNENA_MYPROFILE_USERNAME; ?></b> </td> <td class = "td-2 fbm"><?php echo $userinfo->username; ?></td> </tr>

Change to:
Code:
<?php if ( $fbConfig->userlist_username==1 ) { ?> <tr class ="<?php echo $boardclass; ?>sectiontableentry1"> <td class = "td-1 fbm"><b><?php echo _KUNENA_MYPROFILE_USERNAME; ?></b> </td> <td class = "td-2 fbm"><?php echo $userinfo->username; ?></td> </tr> <?php } ?>

Now that setting in the Configuration will function as it should.

Cheers
Amrit

Please Log in or Create an account to join the conversation.

Time to create page: 0.271 seconds