Hello,
In Kunena 5.x, Profile link integration is broken. Despite a properly configured SEO site, links to profiles are being built in uddeIM like this:
/forum/userid-789?func=profile
And are not being translated into their proper SEO form:
/forum/profile/735-hayward
Even with SEO off, that older format no longer functions.
EDIT:
Here's the fix:
Change line 125 from this:
Code:
$gimmeback = "<a href='".uddeIMsefRelToAbs("index.php?option=com_kunena&func=profile&userid=".(int)$ofanid.$itemid)."'>".$ofaname."</a>";
To this:
Code:
$gimmeback = "<a href='".uddeIMsefRelToAbs("index.php?option=com_kunena&view=user&userid=".(int)$ofanid.$itemid)."'>".$ofaname."</a>";
It should be "view=user" instead of "func=profile"