Hi, I'm trying to create a list for internal linking with a dropdown in the admin panel.
Therefore i created a dropdown, which is loading the following snippet
the links to none clonable templates working fine, but the links to the cloned pages outputs something like this: http://localhost/MT/page.php?p
So the numbers of the pages are missing in the link. What did I wrong?
Thank you very much!!!
Therefore i created a dropdown, which is loading the following snippet
- Code: Select all
choose|
<cms:templates>
<cms:if (k_template_name ne 'globals.php') && (k_template_name ne 'galerie.php')>
<cms:show k_template_title/>=<cms:show k_template_name/>|
<cms:if k_template_is_clonable>
<cms:pages masterpage=k_template_name>
<cms:show k_page_title/>=<cms:show k_page_link/>|
</cms:pages>
</cms:if>
</cms:if>
</cms:templates>
the links to none clonable templates working fine, but the links to the cloned pages outputs something like this: http://localhost/MT/page.php?p
So the numbers of the pages are missing in the link. What did I wrong?
Thank you very much!!!