Sadik B
Well-known member
At the moment on forum_view, the call to getNodeBreadCrumbs has the second parameter hardcoded to be false. Some people may want to show the self node in Breadcrumb, specially in a situation where there is no parent category.
That is in Xenforo_ControllerPublic_Forum, we have
It's simple to extend the Xenforo_Model_Node::getNodeBreadCrumbs method, but having it as an ACP option is more desirable.
Regards
That is in Xenforo_ControllerPublic_Forum, we have
PHP:
'nodeBreadCrumbs' => $ftpHelper->getNodeBreadCrumbs($forum, true),
It's simple to extend the Xenforo_Model_Node::getNodeBreadCrumbs method, but having it as an ACP option is more desirable.
Regards
Upvote
0