GetSimple Support Forum

Full Version: I18N Navigation without title tag in the link?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I use I18N for configuring my navigation. It is integrated with:

Code:
<div id="navigation">
<ul>
<?php get_i18n_navigation(return_page_slug(),0,3,I18N_SHOW_MENU); ?>
</ul>
</div>

When the page is generated, I get menu links with the title-tag. Is it possible to avoid this behaviour?

My problem are ugly title tags, because some of my page-h1 titles are URLs and not only text:
Code:
<a href="www.domain.de/blog" title="<a href=&quot;http://www.domain.de/blog&quot;>Blog</a>">Blog</a>


So can I switch off the generation of the title tag for navigation entries?

Bye
Hypertexter
(2015-04-28, 20:09:45)Hypertexter Wrote: [ -> ]So can I switch off the generation of the title tag for navigation entries?

Use custom rendering: the example there should already be what you want.
Hello mvlcek,

that works fine, thank you!

I added a component as you proposed and now call the navigation with

Code:
<?php get_i18n_navigation(return_page_slug(),0,3,I18N_SHOW_MENU, $component=navigation); ?>

I do not understand the component, but the title tag has disappeared. Smile

Thank you.

Bye
Hypertexter

? How can I mark this question as solved? ?
I did it for you , you just full edit the first post, and change it.
Idea  Thank you!