The following warnings occurred:
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message



GetSimple Support Forum
SOLVED I18N Navigation without title tag in the link? - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16)
+--- Thread: SOLVED I18N Navigation without title tag in the link? (/showthread.php?tid=7241)



I18N Navigation without title tag in the link? - Hypertexter - 2015-04-28

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


RE: I18N Navigation without title tag in the link? - mvlcek - 2015-04-29

(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.


RE: I18N Navigation without title tag in the link? - Hypertexter - 2015-04-30

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? ?


RE: I18N Navigation without title tag in the link? - shawn_a - 2015-04-30

I did it for you , you just full edit the first post, and change it.


RE: I18N Navigation without title tag in the link? - Hypertexter - 2015-05-01

Idea  Thank you!