【发布时间】:2019-10-31 09:12:45
【问题描述】:
我正在为TYPO3 v8.7.24 使用扩展名cs_seo v3.1
我正在按照documentation 中的说明通过在页面tsConfig 中输入以下内容来禁用特定页面上的扩展程序
# page TSconfig
mod.web_layout.tx_csseo.disable = 0
但是元标记仍然加载在页面顶部?
<title>Test Title</title>
<meta name="description" content="">
<link rel="canonical" href="http://localhost/page-title" />
<meta property="og:type" content="Test type" />
<meta property="og:title" content="Test title" />
<meta property="og:description" content="Test desc" />
<meta property="og:url" content="http://localhost/page-title" />
<meta property="og:site_name" content="Test Site" />
<meta property="og:image" content="http://localhost/fileadmin/templates/facebook.jpg" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:image" content="http://localhost/fileadmin/templates/twitter_default.jpg" />
即使选择“仅标题”选项,内容仍然会出现。
任何人都知道为什么此内容仍会加载的任何原因,当我查看我的页面 tsConfig 时,它在 mod/weblayout 分支下如下所示
我需要在没有这些附加标签的情况下加载此页面!有人可以帮忙吗?
【问题讨论】:
标签: typo3 typoscript typo3-8.x typo3-extensions