I thought the original question was -
Anyways, that is because you are using the <cms:show main_content /> in the list-view.
Regions are associated with individual pages and become available either is page-view or within the cms:pages loop.
Please try using it from within the cms:pages block as follows -
Hope it helps
I've added a content area, but it's not showing up in admin?
Anyways, that is because you are using the <cms:show main_content /> in the list-view.
Regions are associated with individual pages and become available either is page-view or within the cms:pages loop.
Please try using it from within the cms:pages block as follows -
- Code: Select all
<cms:pages folder=k_folder_name include_subfolders='0' limit='18' paginate='1'>
<a class="fancybox" href="<cms:show gg_image />" data-fancybox-group="gallery"><img alt="<cms:show k_page_title />" src="<cms:show my_thumb_2 />"/></a>
<cms:show main_content />
<cms:if k_paginated_bottom >
<div style="clear:both">
<cms:paginator />
</div>
</cms:if>
</cms:pages>
Hope it helps
