对于某些节点类型,使用视图而不是节点模板
我想使用 Drupal 7 中的视图替换某些自定义节点类型的默认显示。
例如,我有一个视图将节点 id 作为第一个参数。 如果节点 NID 属于某种自定义类型,我希望在访问 ?q=node/NID 时使用此视图而不是默认主题模板。
能够在节点页面内容的底部添加查看结果也很好。
这可能吗?我该怎么做,我应该使用哪些模块?
I would like to replace the default display of some custom node types using views in Drupal 7.
For example, I have a view taking as first arguments a node id.
I want this view to be used instead of the default theme template when visiting ?q=node/NID if the node NID is of a certain custom type.
Being able to add the view result at the bottom of the content of the node page would be good too.
Is this possible? How should I do, which modules should I use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以使用 contemplete 模块并以编程方式调用视图。
Could use the contemplete module and call the view programitically.
我找到了一个非常简单的解决方案:为视图创建一个块,然后选择以下参数作为该块的参数:
“提供默认参数”-> “来自 URL 的节点 id”->按节点类型验证。
然后我在内容部分添加了该块。
因此,该视图仅显示在正确的页面上!
I found a very simple solution: create a block for the view, then as argument for the block select the following parameters:
"Provide default argument" -> "node id from URL" -> Validate by node type.
I then added the block in the content section.
Thanks to this, the view is only displayed on the right pages!