如何将特定节点的内容放在网格视图旁边?
我想将文本正文放在动态生成的产品图像网格旁边。
我可以使用视图模块轻松创建网格 - 但如何拆分页面以在网格旁边显示指定的页面节点?
I want to place a body of text alongside a dynamically generated grid of product images.
I can easily create the grid using the Views module - but how do I split a page to display a specify page node alongside the grid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过多种方式做到这一点。最好的方法可能取决于布局的细节。
一种解决方案是使用面板模块。
或者您可以使用 page-node-1.tpl.php 之类的内容覆盖默认的 page.tpl.php 并使用 views_embed_view。
另一种方法是将视图输出为块显示并将其添加到节点页面上的块区域。
There are lots of ways you might do it. The best way may depend on the particulars of your layout.
One solution would be to use the Panels module.
Or you could override the default page.tpl.php with something like page-node-1.tpl.php and insert the view using views_embed_view.
Yet another method would be to output the view as a block display and add it to a block region on the node page.
视图附加模块也可能有帮助。
Views Attach module may also help.