Kunena 6.2.6 released

The Kunena team has announce the arrival of Kunena 6.2.6 [K 6.2.6] which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x. This version addresses most of the issues that were discovered in K 6.1 / K 6.2 and issues discovered during the last development stages of K 6.2

This category contains miscellaneous, uncategorised user contributions, (templates, modules, plugins and hacks) relating to older versions of Kunena that are no longer supported.

The topics in this category are for historical interest only. Owing to the structural changes that occurred in K 2.0, many of the ideas in these topics will not work with later versions and, for that reason, the topics are locked.

Question How to make email-adresses of users visible in every posting?

More
11 years 1 week ago #1 by kallle
I need to make email-adresses of users visible in every posting. At the time the only place to see the email ist the user-profile.

When I show into the DB-table "...kunena_messages" the username ist filled in, but the email is complete empty. So the adresses can't be visible.
Which program-file is responsible to write the email of the users in "...kunena_messages"?

Regards,
kallle

Kunena 2.0.4 / Joomla 1.5.26

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

More
11 years 1 week ago - 11 years 1 week ago #2 by TKtemp
Hi,

email field in "kunena_messages" table is empty because you have not configured your forum in the way that email is required when messages are posted.

The easiest way to show users email in post page is to get it from your joomla users table.

Just add this line
Code:
<?php echo $this->profile->email ?>
anywhere you want to show it inside file:
components / com_kunena / template / blue_eagle / html / topic / default_profile_vertical.php
Last edit: 11 years 1 week ago by TKtemp.

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

More
11 years 1 week ago #3 by kallle
Thank you very much, TKtemp!

Please can you tell me how to make a clickable "mailto"-Link from the response of <?php echo $this->profile->email ?> ?

Regards
kallle

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

More
11 years 1 week ago #4 by TKtemp
Hi,

try in this way
Code:
<a href="mailto:<?php echo $this->profile->email ?>"><?php echo $this->profile->email ?></a>

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

Time to create page: 0.407 seconds