This is just not working no matter what I try.
I've set up a new file at /app/design/frontend/mytemplate/default/template/page/popularsearches.phtml
I'm trying to reference in from the Layout Update .XML (from the CMS). The code i'm adding to the layout update xml , under the content reference looks like this:
<block type="core/template" name="popular_searches" as="popular_searches" template="page/popularsearches.phtml" />
Can anybody tell me why it's not working?
Thanks.
EDIT:
Ok I feel like an idiot now, but I've got this working, and I thought i'd post the solution incase anyone come here with the same problem.
I had set up my template file correctly, and the layout XML was all correct but I had not called the getChildHtml anywhere in a template to pull the content into a template.
To get it working I added the following to 1column.phtml
<?php echo $this->getChildHtml('popularsearches') ?>