如果typo3中没有内容,如何隐藏标记或内容部分

发布于 2024-12-20 06:18:32 字数 143 浏览 3 评论 0原文

我有一个带有标记 ###whatever### 的模板,它设置为 TEXT 并填充 .value 我需要隐藏或清空标记IF其中一列(在我的情况下正常列colPos=0

i got a template with a marker ###whatever### its set as TEXT and filled with .value
i need to hide or empty the marker IF one of the columns are empty (in my case the normal column colPos=0)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

作死小能手 2024-12-27 06:18:32

如果普通 (colPos=0) 列中没有内容,则这种情况会阻止显示标记的数据。

YOUR_MARKER = TEXT
YOUR_MARKER {
  # ...your definitions...

  # Check whether there's any content in the column 0
  if.isTrue.cObject = CONTENT
  if.isTrue.cObject {
    table = tt_content
    select {
      where = colPos=0
    }    
    renderObj < tt_content
  }
}

YOUR_MARKER显然必须是正确的路径,例如page.10.subparts.YOUR_MARKER。

This is a condition preventing the display of the marker's data if there's no content in the normal (colPos=0) column.

YOUR_MARKER = TEXT
YOUR_MARKER {
  # ...your definitions...

  # Check whether there's any content in the column 0
  if.isTrue.cObject = CONTENT
  if.isTrue.cObject {
    table = tt_content
    select {
      where = colPos=0
    }    
    renderObj < tt_content
  }
}

YOUR_MARKER obviously has to be the correct path, e.g. page.10.subparts.YOUR_MARKER.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文