Menu item as link

Ask for help or provide support to other members.
Post Reply
grimblefritz
Posts: 16
Joined: Tue Apr 25, 2023 1:21 pm

Menu item as link

Post by grimblefritz »

Is there a way to make a menu item that is a direct link?

For example, if I create a menu item "Search", can I have that be a link directly to lmgtfy.com?

If not, I'd like to make that a request. Please.
User avatar
nox
Posts: 33
Joined: Sat May 23, 2020 9:02 pm

Re: Menu item as link

Post by nox »

Hey grimblefritz,

I know this is a really late reply and you probably found a solution.
Here is an example of custom menu link, inside Sky theme.php:

Code: Select all

<ul class="menu">
	<!-- Menu -->
	<?= $Wcms->menu() ?>
	<li class="nav-item"><a href="https://www.custommenulink.com">Custom Link</a></li>
</ul>
After <?= $Wcms->menu() ?> add your link as list item (li) and same class that is used on menu items (nav-item).
Post Reply