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.
Link a product categorie to an info page
-
Vaddalapam
- Member
- Posts: 76
- Joined: Sat Feb 03, 2024 6:34 pm
- Phoenix Version: v1.1.0.7
- Has thanked: 20 times
- Been thanked: 3 times
Link a product categorie to an info page
You do not have the required permissions to view the files attached to this post.
- burt
- Core Team
- Posts: 4546
- Joined: Tue Oct 29, 2019 9:37 am
- Phoenix Version: v1.1.0.8
- : Buy Me A Beverage
- Has thanked: 252 times
- Been thanked: 412 times
Re: Link a product categorie to an info page
\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;
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>
-
Vaddalapam
- Member
- Posts: 76
- Joined: Sat Feb 03, 2024 6:34 pm
- Phoenix Version: v1.1.0.7
- Has thanked: 20 times
- Been thanked: 3 times