Closed Torsten-K closed 7 years ago
I found the solution: You have to comment out one line in index.php which tells the system to show the navigation only on the home page:
protected function listfiles() {
// display only in starting page
if ($_GET['p'] != $this->config['default_page'] ) {return;}
Change it to:
protected function listfiles() {
// display only in starting page
// if ($_GET['p'] != $this->config['default_page'] ) {return;}
<ul class="allfiles"></ul>
shows a list of all the files – but only on the home page. How can I make it appear on the other pages, too? The unordered list has no entries, like in the code example above.