hi all,
i have footer.php template with repeatable menu

all is great, when I debug via:
i have debug info:

all is great
but now i need to make a link to this page by this page id
how you can see, i have two nested pages menu templates: top_menu.php and main_menu.php
how to generate link?? like a
I need to get http://xxxx.ltd/top_menu.php?p=205 OR http://xxxx.ltd/main_menu.php?p=205
i have footer.php template with repeatable menu
- Code: Select all
<cms:repeatable name='footer_menu_left' label=' ' group='kraujo_centras_block'>
<cms:editable name='footer_menu_left_page_id' type='dropdown' label='Kairiniai meniu punktai' group='kraujo_centras_block'
opt_values="<cms:nested_pages masterpage='top_menu.php' extended_info='0' include_custom_fields='1'><cms:show k_nestedpage_title />=<cms:show k_nestedpage_id /> | </cms:nested_pages>
<cms:nested_pages masterpage='main_menu.php' extended_info='0' include_custom_fields='1'><cms:show k_nestedpage_title />=<cms:show k_nestedpage_id /> | </cms:nested_pages>" />
</cms:repeatable>

all is great, when I debug via:
- Code: Select all
<cms:pages masterpage='footer.php' extended_info='0' include_custom_fields='0'>
<cms:show_repeatable "footer_menu_left">
<cms:dump />
</cms:show_repeatable>
</cms:pages>
i have debug info:

all is great
but now i need to make a link to this page by this page id
how you can see, i have two nested pages menu templates: top_menu.php and main_menu.php
how to generate link?? like a
- Code: Select all
<cms:pages masterpage='footer.php' extended_info='0' include_custom_fields='0'>
<cms:show_repeatable "footer_menu_left">
<cms link XXX="<cms:get 'footer_menu_left_page_id' />"/> <---- HOW TO GENERATE LINK BY NESTED_PAGE ID ???
</cms:show_repeatable>
</cms:pages>
I need to get http://xxxx.ltd/top_menu.php?p=205 OR http://xxxx.ltd/main_menu.php?p=205