Drupal 主题停止使用移动网站面板
我正在开发一个由 Mobile 模块提供支持的 Drupal 移动网站。非移动主题使用面板,而移动主题则不使用面板。当面板出现并破坏其布局时,我需要关闭移动主题的面板。我该如何做到这一点,或者是否有更好的方法来实现单独的移动网站?我们正在运行 Drupal 6。
提前致谢!
I'm working on a Drupal mobile site which is powered by the Mobile module. The non-mobile theme uses panels, and the mobile theme does not. I need to turn off panels for the mobile theme as the panels appear and ruin its layout. How can I do this, or is there a better way to achieve a separate mobile site in general? We're running Drupal 6.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以在 template_preprocess_page() 函数中进行一些黑客攻击。我从未尝试过做你正在做的事情,因为我不使用面板模块。
面板模块在您的内容中添加了哪些内容?也许你可以用 CSS 来做到这一点?
希望这有帮助。
You might be able to do some hacking in the template_preprocess_page() function. I've never tried to do what you're doing, as I don't use the panels module.
What kind of stuff does the panels module put into your content? Maybe you can do it with CSS?
Hope this helps.