Jaxel
Well-known member
I would like to hook into "XenForo_Dependencies_Public" and replace the existing "_getNavigationContainerParams" or "getEffectiveContainerParams".
Is something like this possible? How would I do it?
Basically I would like to do something along the lines of:
Is something like this possible? How would I do it?
Basically I would like to do something along the lines of:
Code:
public function getEffectiveContainerParams()
{
$response = parent::getEffectiveContainerParams();
unset($response->params['tabs']['members'])
return $response;
}