Hello everyone, we run a website with Community Builder and have equipped the community area with separate modules. The community area can be accessed via menu items defined for this purpose. The menu items for the community area have their own CSS class so that the area is different from the rest of the website. So if I call up a profile from the online module or the member list, the defined modules are displayed and the correct CSS class is loaded. With two third-party modules, I now have the problem that the link to the profile looks like this:
Code:
$link = CBApplication::CBFramework()->cbSef('index.php?option=com_comprofiler' . ($user['userid'] ? '&task=userprofile&user=' . (int)$user['userid'] : ''), true, 'html');
This then leads to the modules and the CSS class from the community area not being loaded, but the modules from the homepage. How can I adjust the link so that it works similarly to the official Community Builder modules? I have already looked in the source code there, but found nothing.
Thank you very much for your help!