I added a few pages (cms) to the Magento admin panel. I know that I can attach blocks to a specific page using the {{block ..}} in the content field.
I do not want to define blocks there, but in the cms.xml file. Therefore, other store administrators are not annoyed by the strange codes ({{block ..}}) in the backend editor.
I defined an index / homepage with the following xml tag:
<cms_index_index>
<reference name="content">
<block... />
</reference>
</cms_index_index>
How can I identify other cms pages (by identifier or seo-identifier) in cms.xml?
I tried to define them:
<cms_page_[seo-ident]>
<cms_pageid_[id]>
<cms_[seo-ident]>
<cms_[id]>
source
share