Our Joomla! extensions are all OpenSource and free of charge. Support is also free of charge. Nevertheless, we do have costs that need to be paid. This is done out of our own pocket. We have had a donation button on our website for some time now, which is actually used to make donations from time to time. The donation progress bar is intended to show how much support we have received and how much is still missing to cover the basic costs, such as hosting and services. The annual costs currently amount to 356€.
Thank you for your support!
You want to support and there is no suitable platform? Write to us in the forum.
Hello,
I had the problem with the profile links that the intended menu items were not accessed, but rather the home page with its modules.
I asked for help in the
Community Builder support forum
and have now made the following change to the "ComprofileHelper.php" file:
public function getProfileLink($user)
{
$userName = $this->getUserName($user);
if ($user['userid'] && ($user['userid'] == CBApplication::MyUser()->getUserId())) {
$user['userid'] = null;
}
global $_CB_framework;
$link = $_CB_framework->userProfileUrl( $user['userid'] );
$title = Text::sprintf('SWBIRTHDAY_USER_LINK_TITLE', $userName);
return "<a href=\"{$link}\" title=\"{$title}\" rel=\"nofollow\">{$userName}</a>";
}
This means that when you click on the user profile, the intended menu item with the associated modules is now loaded.
Maybe this could be taken into account in an update?
If you enjoy our extensions and found our assistance helpful, please consider supporting the project as outlined at the top of the page. Your support would be greatly appreciated.
If you enjoy our extensions and found our assistance helpful, please consider supporting the project as outlined at the top of the page. Your support would be greatly appreciated.