自定义内容元素未在前端呈现

Custom content element is not rendered in front-end

需要有关未呈现的自定义内容元素的帮助。 这是我的错别字:

tt_content.cat_button = FLUIDTEMPLATE
tt_content.cat_button {
    template = FILE
    template.file = EXT:so_product/Resources/Private/Templates/ContentELements/CategoryButton.html
    layoutRootPath = EXT:so_product/Resources/Private/Layouts/
}

即使我拼错CategoryButton.html,也不会出现错误信息。那么我如何知道是否找到了正确的模板?

如果我删除行 templatetemplate.file,我会收到消息 "Oops, no template found..."

我的模板只包含 <p>Test</p>。我也需要部分和布局吗?

这是我使用的指南:http://docs.typo3.org/typo3cms/extensions/sitepackage/CustomContentElements/Index.html

日志中没有错误。

你的打字错误。

检查 TSRef http://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Fluidtemplate/Index.html

tt_content.cat_button = FLUIDTEMPLATE
tt_content.cat_button {
   file = EXT:so_product/Resources/Private/Templates/ContentELements/CategoryButton.html
}

简单的错字:

ContentELements -> ContentElements

还有 TYPO3 中没有显示错误消息的错误。