GetSimple Support Forum

Full Version: i18n how to set the parent menu no-clickable?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi
I use i18n plugin. Is anyone know how to set the parent menu no-clickable?

-option1   clicable

-option2    <--- I want this no clickable
  --child21 clicable
  --child22 clicable

-option3 clicable

Thanks
Tom
Hi
There are two ways that I know of:
First(simple but inconvenient):
i18n plugin + menu rendering (http://mvlcek.bplaced.net/multi-level-na...-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-na...-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?
(2017-02-16, 07:46:04)AleksK Wrote: [ -> ]Hi
There are two ways that I know of:
First(simple but inconvenient):
i18n plugin + menu rendering (http://mvlcek.bplaced.net/multi-level-na...-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-na...-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?

Thanks AleksK for your solution but I found another way, just style sheet modification:

.sf-menu > .services > a, .rd-with-ul:active {
  cursor: default;
  pointer-events: none;
}

.rd-with-ul {
  cursor: default;
}

.rd-with-ul > span {
  cursor: pointer;
  pointer-events: all;
}