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.
Menu item as link
Re: Menu item as link
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:
After <?= $Wcms->menu() ?> add your link as list item (li) and same class that is used on menu items (nav-item).
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>