Link a product categorie to an info page

Open to all! Ask other shopowners for help.
Post Reply
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

Post 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
You do not have the required permissions to view the files attached to this post.


Join The Code Co-op to get access to your library in the Code Co-op Forum
User avatar
burt
Core Team
Posts: 4550
Joined: Tue Oct 29, 2019 9:37 am
Phoenix Version: v1.1.0.8
Has thanked: 252 times
Been thanked: 412 times

Re: Link a product categorie to an info page

Post 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>
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

Re: Link a product categorie to an info page

Post by Vaddalapam »

Exactly, Thank you. It works.


Join The Code Co-op to get access to your library in the Code Co-op Forum
Post Reply