function onEnd()
{
// Optional - set the page title to the item title
if (isset($this['showcaseItem']))
$this->page->title = $this['showcaseItem']->title;
}
Instead try this:
function onEnd()
{
// Optional - set the page title to the category name
if ($this['item'])
$this->page->title = $this['item']->title;
}
There is a Mistake in your documentation:
This is not working:
Instead try this: