2017-02-16, 07:46:04
Hi
There are two ways that I know of:
First(simple but inconvenient):
i18n plugin + menu rendering (http://mvlcek.bplaced.net/multi-level-navigation/navigation-rendering)
href attribute, remove the output from the reference, and then lose each parent menu link.
Validator allows you to create <a> tag without HREF - no error
<a> tag saved for easier styling with CSS
Example code without HREF:
use a component
in code second row
href="<?php echo htmlspecialchars($item->link); ?>"
must be removed
Second (a little more complicated, but perfectly adjusted):
i18n plugin + Сustom Fields plugin + menu rendering
(http://mvlcek.bplaced.net/multi-level-navigation/navigation-rendering)
http://mvlcek.bplaced.net/get-simple/custom-fields
This method allows you to choose where post a link and where not to post a link.
very well described here
Non-Clickable Links for il8N Navigation?
There are two ways that I know of:
First(simple but inconvenient):
i18n plugin + menu rendering (http://mvlcek.bplaced.net/multi-level-navigation/navigation-rendering)
href attribute, remove the output from the reference, and then lose each parent menu link.
Validator allows you to create <a> tag without HREF - no error
<a> tag saved for easier styling with CSS
Example code without HREF:
use a component
in code second row
href="<?php echo htmlspecialchars($item->link); ?>"
must be removed
Code:
<li class="<?php echo $item->classes; ?>">
<a href="<?php echo htmlspecialchars($item->link); ?>">
<?php echo htmlspecialchars($item->text); ?>
</a>
<?php if ($item->isOpen) { ?>
<ul><?php $item->outputChildren(); ?></ul>
<?php } ?>
</li>
Second (a little more complicated, but perfectly adjusted):
i18n plugin + Сustom Fields plugin + menu rendering
(http://mvlcek.bplaced.net/multi-level-navigation/navigation-rendering)
http://mvlcek.bplaced.net/get-simple/custom-fields
This method allows you to choose where post a link and where not to post a link.
very well described here
Non-Clickable Links for il8N Navigation?
I use machine translation. Forgive me my errors.