i included a own page within phpbb
at the moment no breadcrumb is shown
what is the best, easiest, ... way to include it?
adapting overall_header.html seems to be hard IMHO (at least at the moment for me ) ...
navlinks
in /styles/*/template/navbar_header.html, but I'm not sure if you want to have your own breadcrumb row instead of using phpBB's one, as your examples differ from that.Code: Select all
$this->template->assign_block_vars_array('navlinks', [
[
'FORUM_NAME' => 'CategoryB',
'U_VIEW_FORUM' => 'URL to CategoryB',
],
[
'FORUM_NAME' => 'SubcategoryB',
'U_VIEW_FORUM' => 'URL to SubcategoryB',
],
]);