Drupal中同一个节点,不同的模板,怎么办?
我有一个显示图像的内容类型。
当此图像显示为常规节点页面(node/xxx)时,我希望它使用常规模板文件。
当此图像显示在模式(Lightbox2 弹出模式)中时,我希望它使用另一个模板文件(删除页眉和页脚、更改背景等)。
如何为同一个节点设置两个不同的模板?
谢谢,
I have a content type which displays an image.
When this image is displayed as regular node page (node/xxx), I would like it to use the regular template file.
When this image is displayed in a modal (Lightbox2 popup modal), I would like it to use another template file (to remove the header and footer, change background, etc).
How can I set two different templates for the same node?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想要使用可以在 lightbox2 模块文件夹中找到的
page-node-lightbox2.tpl.php
。将该文件复制到主题文件夹并进行所需的所有更改,然后清除缓存 (www.example.com/admin/settings/performance),您应该会看到图像模态视图的更改。You probably want to use
page-node-lightbox2.tpl.php
which can be found in the lightbox2 module folder. Copy that file to your theme folder and make all the changes you want, then clear your cache (www.example.com/admin/settings/performance) and you should see the changes to the modal view of your images.