Page 1 of 1

Link a product categorie to an info page

Posted: Fri May 15, 2026 9:35 am
by Vaddalapam
Hello,
I'm trying to link one of the product categories to an info page.
Been searching in some php files navbar .... but could not find the location of the links. In which php file are they located ? Thank you.
Unbenannt.PNG

Re: Link a product categorie to an info page

Posted: Fri May 15, 2026 9:43 am
by burt
\includes\modules\content\header\templates\tpl_cm_header_menu.php

If I am not misunderstanding, you want to add an extra link at the end of the Categories List ?

Find </ul> about Line 40.

Add before it;

Code: Select all

<li class="nav-item">
  <?= '<a class="nav-link" href="' . $GLOBALS['Linker']->build('info.php', ['pages_id' => 123]) . '">Squonker Flaschen</a>' ?>
</li>

Re: Link a product categorie to an info page

Posted: Fri May 15, 2026 10:01 am
by Vaddalapam
Exactly, Thank you. It works.