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 third-party extensions (e.g. JomSocial, Community Builder, etc.) relating to older versions of Kunena that are no longer supported.

This category may also contain a few topics relating to K 1.6 that may have been moved here possibly by mistake.

The topics in this category are for historical interest only. Owing to the structural differences between K 1.6 and K 1.7, the ideas in these topics may not work with later versions and, for that reason, the topics are locked.

Question Signature bug CB integration?

More
14 years 8 months ago #41 by plix
One precision. The codes described in this forum seems to be from an older version of Kunena. It might also be from the latest Kunena 1.0.11, I don't know.

Anyway, if you are using the latest Kunena 1.5.4 (v1.5.4_stable_b1730_2009-07-11) like me, codes should look a little bit different.

Here we go:

In file joomla_root/components/com_kunena/template/default/view.php near line 810, you'll find this code:
Code:
if ($fbConfig->fb_profile == 'cb' && $fmessage->userid > 0) { $msg_prflink = CKunenaCBProfile::getProfileURL($fmessage->userid); $msg_profile = "<a href=\"" . $msg_prflink . "\"> <img src=\"";

To enable previous Community Builder signatures or just to show your signature added from your Community Builder profile, change the code to this:
Code:
if ($fbConfig->fb_profile == 'cb' && $fmessage->userid > 0) { $database->setQuery("SELECT fbsignature FROM #__comprofiler WHERE user_id='$fmessage->userid'"); $userinfo->signature = $database->loadResult(); $msg_prflink = CKunenaCBProfile::getProfileURL($fmessage->userid); $msg_profile = "<a href=\"" . $msg_prflink . "\"> <img src=\"";

It works fine for me.

Credit still goes to carreon.

Thanks.

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

Time to create page: 0.479 seconds