Hi
Currentyl I have a website with one language where I've used this code to make a menu linked to my nested pages:
Now my client asked me to add 3 more languages.
I started with implementing the "3. Creating a separate editable region for each language"-method.
I replaced the k_nestedpage_title tags with my new custom page title tags. (I used <cms:if my_lang = "en">...)
But didn't work out.
Do you guys have some experience/workaround for this issue?
Thanks!
Currentyl I have a website with one language where I've used this code to make a menu linked to my nested pages:
- Code: Select all
<cms:nested_pages masterpage='index.php' extended_info='1' >
<cms:if k_level_start >
<cms:if k_level='0'>
<ul class="sidebar-nav">
<cms:else />
<ul id="transport-dropdown" class="<cms:if k_is_active> active</cms:if>">
</cms:if>
</cms:if>
<cms:if k_element_start >
<cms:if k_immediate_children ='0'>
<li><a href="<cms:show k_menu_link />" class="<cms:if k_is_active> active</cms:if>"><cms:show k_nestedpage_title /></a>
<cms:else />
<li><a id="transport-button" href="#"><cms:show k_nestedpage_title /></a></li>
</cms:if>
</cms:if>
<cms:if k_element_end ></li></cms:if>
<cms:if k_level_end ></ul></cms:if>
</cms:nested_pages>
Now my client asked me to add 3 more languages.
I started with implementing the "3. Creating a separate editable region for each language"-method.
I replaced the k_nestedpage_title tags with my new custom page title tags. (I used <cms:if my_lang = "en">...)
But didn't work out.
Do you guys have some experience/workaround for this issue?
Thanks!