- Posts: 26
- Thank you received: 0
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] 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
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 Community Builder login and register
16 years 9 months ago #22823
by the_ai
Community Builder login and register was created by the_ai
Hey there! I have problems with several accounts posting spam. I've disabled them through community builder(banned them). But as I see the login button in the forum leads to the standard joomla component user and not to something from community builder.
I have chosen community builder profiles in the backend of kunena, but this is not effecting those 2 buttons(login and register) - is there something that I have to configure out there, or the best thing is to wait for a code fix, or to remove these things from my template?
Here is an example
compojoom.com/forum.html
Click on login, password reset or register.
I have chosen community builder profiles in the backend of kunena, but this is not effecting those 2 buttons(login and register) - is there something that I have to configure out there, or the best thing is to wait for a code fix, or to remove these things from my template?
Here is an example
compojoom.com/forum.html
Click on login, password reset or register.
Please Log in or Create an account to join the conversation.
16 years 9 months ago #22851
by Lintzy
Replied by Lintzy on topic Re:Community Builder login and register
This plugin looks very helpfully.
extensions.joomla.org/extensions/access-...ication/7319/details
extensions.joomla.org/extensions/access-...ication/7319/details
Please Log in or Create an account to join the conversation.
16 years 9 months ago #22858
by the_ai
Replied by the_ai on topic Re:Community Builder login and register
compojoom.com/component/comprofiler/registers.html
The CB module handles the registration process. So the link in the forum should lead to the forum and not to the default joomla user component. I guess I should replace the text from the forum with my CB module, then it would be fine.
The CB module handles the registration process. So the link in the forum should lead to the forum and not to the default joomla user component. I guess I should replace the text from the forum with my CB module, then it would be fine.
Please Log in or Create an account to join the conversation.
16 years 9 months ago #22860
by Lintzy
Replied by Lintzy on topic Re:Community Builder login and register
This plugin works with Community Builder 1.2
Please Log in or Create an account to join the conversation.
16 years 9 months ago #22877
by chema
Replied by chema on topic Re:Community Builder login and register
Hi,
@the_ai you can also in /components/com_kunena/template/default/plugin/profilebox/profilebox.php:
Search:
Replace for:
This work fine for registration on community builder since "from" kunena.
Regards.
@the_ai you can also in /components/com_kunena/template/default/plugin/profilebox/profilebox.php:
Search:
Code:
<?php // AFTER LOGIN AREA
if ($fbConfig->fb_profile == 'cb')
{
$loginlink = CKunenaCBProfile::getLoginURL();
$logoutlink = CKunenaCBProfile::getLogoutURL();
$registerlink = CKunenaCBProfile::getRegisterURL();
$lostpasslink = CKunenaCBProfile::getLostPasswordURL();
}
else
{
$loginlink = JRoute::_('index.php?option=com_user&view=login');
$logoutlink = JRoute::_('index.php?option=com_user&view=login');
$registerlink = JRoute::_('index.php?option=com_user&task=register&Itemid=' . $Itemid);
$lostpasslink = JRoute::_('index.php?option=com_user&view=reset&Itemid=' . $Itemid);
}
if ($kunena_my->id)
{
?>
Code:
<?php // AFTER LOGIN AREA
if ($fbConfig->fb_profile == 'cb')
{
$loginlink = CKunenaCBProfile::getLoginURL();
$logoutlink = CKunenaCBProfile::getLogoutURL();
$registerlink = CKunenaCBProfile::getRegisterURL();
$lostpasslink = CKunenaCBProfile::getLostPasswordURL();
}
else
{
$loginlink = JRoute::_('index.php?option=com_comprofiler&task=login');
$logoutlink = JRoute::_('index.php?option=com_comprofiler&task=logout');
$registerlink = JRoute::_('index.php?option=com_comprofiler&task=registers');
$lostpasslink = JRoute::_('index.php?option=com_comprofiler&task=lostPassword');
}
if ($kunena_my->id)
{
?>
Regards.
Please Log in or Create an account to join the conversation.
16 years 9 months ago #22878
by the_ai
Replied by the_ai on topic Re:Community Builder login and register
Thank you chema!
That worked!
That worked!
Please Log in or Create an account to join the conversation.
Time to create page: 0.252 seconds