Hi,
When using the knowledge base, after clicking on one of the categories, you can only see the linked questions but not the category title.
Example: I open the knowledge base and I click on the category 'Management'. Then I see five questions but I can not see "you are now browsing the category Management". I have tried adding the following code, but this breaks my layout. What am I doing wrong?
if ($faqs->exists(true)) {
echo '<h2>'.('FAQ > '). $category->getFullName(); '</h2><div id="faq"><ol>';
foreach ($faqs as $F) {
$attachments=$F->has_attachments?'<span class="Icon file"></span>':'';
echo sprintf('
<a href="faq.php?id=%d" >%s %s</a>',
$F->getId(),Format::htmlchars($F->question), $attachments);
}
echo ' </ol>
</div>
<p><a class="back" href="/kb">< '.__(Back to overview).'</a><br></p>';
Thanks in advance.