Add link to top menu navigation
You can navigate to /templates/default/views/layoutpartials/topmenu.html and around line 84 add the following code;
You can customize the link and the text by editing the "index.php" and "Home"
<li class="nav-item">
<a href="index.php">
<?php echo $this->user->lang('Home'); ?>
</a>
</li>
You can customize the link and the text by editing the "index.php" and "Home"
Updated on: 24/02/2023
Thank you!