Hi Peter,
thanks for your input. I myself do not get these notices so cannot reproduce (I am on Kunena 4, maybe that is what makes it different), However: I made some changes to the code, if you could test if these fix the notices for you?
in file: plugins/kunena/easyprofile/profile.php
replace
public function getUserListURL($action = '', $xhtml = true)
{
if ($config->userlist_allowed == 1 && $my->id == 0)
{
return false;
}
elseif ($this->params->get('userlist', 0) == 0)
{
$config = KunenaFactory::getConfig();
$my = JFactory::getUser();
return KunenaRoute::_('index.php?option=com_kunena&view=user&layout=list' . $action, $xhtml);
}
else
{
return JRoute::_('index.php?option=com_jsn&view=list&Itemid='.$this->params->get('menuitem',''),false);
}
}
with
public function getUserListURL($action = '', $xhtml = true)
{
$config = KunenaFactory::getConfig();
$my = JFactory::getUser();
if ($config->userlist_allowed == 1 && $my->id == 0)
{
return false;
}
elseif ($this->params->get('userlist', 0) == 0)
{
return KunenaRoute::_('index.php?option=com_kunena&view=user&layout=list' . $action, $xhtml);
}
else
{
return JRoute::_('index.php?option=com_jsn&view=list&Itemid='.$this->params->get('menuitem',''),false);
}
}
now for the 'user list', if you want to use the Kunena user list you should disable the userlist and profile in the kunen-easyprofile plugin and enable the 'Enable Kunena Profiles' in the 'Kunena - Kunena Integration' plugin.
could you give that a try?