NAV_LIST_UL in V1.2.9pre
Hi at all,
two hints using the NAV_LIST_UL:
1. The link tracing don´t work in V1.2.9pre 20062011.
The .active class (if you use it) is lost in the parent link.
Solution:
/include/inc_front/front.func.inc.php:
Exchange line 3239:
Code: Select all
if($active_class != '' && $key == $GLOBALS['aktion'][0]) {
to:
Code: Select all
if($active_class != '' && isset($GLOBALS['LEVEL_KEY'][$key])) {
2. A new parameter is available in wrap_ul_div:
@string $parameter =
"menu_type, start_id, max_level_depth, class_path, class_active, ul_id_name, wrap_ul_div(0 = off, 1 = <div>, 2 = <div id="">,
3 = <div class="navLevel-0">), wrap_link_text(<em>|</em>)"
E.g.:
{NAV_LIST_UL:F,0,4,,active,,3}
For every level there is an output like
Code: Select all
<div class="navLevel-0">
<ul>
<li class="sub_no">.....
<li class="sub_ul active">.......
<div class="navLevel-1">.....
<ul>
<li class="sub_no active">......
</ul>
</div>
</li>
<li class="sub_no">...
</ul>
</div>
It is an excellently parameter. This makes the CSS simple easy.
Basics:
http://www.phpwcms.de/forum/viewtopic.php?t=12165
CSS basics:
http://www.phpwcms.de/forum/viewtopic.php?t=12716
-------------------
3. Error using GT mode with UTF-8 charset: "Warning: cannot yet handle MBCS in html_entity_decode()!"
http://www.phpwcms.de/forum/viewtopic.php?p=68589#68589
Regards Knut