My site has a common included top and bottom for ALL pages. Some of these pages are clonable, others not so.

In the HEAD section of the common 'top' include I have:

Code: Select all
<title><cms:if k_page_title ne ''><cms:show k_page_title /><cms:else /><cms:editable name='htmltitle' label='Title' desc='Enter page title here' type='text' order='0'></cms:editable></cms:if></title>


This works fine on the public side, displaying the k_page_title wherever it's available, and if not available, displays the content the editor puts in the custom added 'htmltitle' field instead.

In the backend however - while all is well for page templates which are not clonable, for clonable templates when editing a new page there are two 'Title' fields displayed.

Is there some way round this other than hacking at my existing site structure?

TY