如何设置灯箱主题
我需要为我的灯箱设置主题。我可以在 lightbox.js 中看到 JavaScript 代码生成的 HTML,但我无法覆盖该文件,否则更新模块时我将丢失更改。有没有更好的方法来覆盖主题输出?
I need to theme my lightbox. I can see the HTML generated by the JavaScript code in lightbox.js, but I cannot overwrite that file, or I will lose my changes when I update the module. Is there any better way to override a theme output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您没有报告您对哪个 Drupal 版本感兴趣;我给出的答案对于 Drupal 6 有效,但对于 Drupal 7 来说几乎没有什么改变。Lightbox2
使用 其输出的模板文件。如果您创建一个实现 hook_theme_registry_alter 的自定义模块() 使用不同的模板文件,那么您可以使用使用您编写的 JavaScript 文件的模板文件。
You didn't report for which Drupal version you are interested; the answer I am giving is valid for Drupal 6, but few things would change for Drupal 7.
Lightbox2 uses a template file for its output. If you create a custom module that implements hook_theme_registry_alter() to use a different template file, then you can use a template file that uses a JavaScript file you wrote.
你不能只通过改变 CSS 来主题化吗?
在主题的 .info 文件 中,您可以覆盖模块的
css< /code> 和/或
js
然后将 css 或 js 文件从模块复制到您自己的主题文件夹中,(每个主题应该有一个 .info,如果没有创建一个) - 这意味着您不要触碰实际的 contrib 模块文件,Drupal 将使用您主题中的文件,您可以编辑您想要的内容,如果您确实遇到问题,您只需从 .info 文件中删除该条目,然后它就会返回使用原始模块文件a。
我还没有为 JS 做过这个,但我相信这个过程与 CSS 相同,这里是我的 .info 文件中的内容片段 - 顺便说一句,我认为一旦你使用这种覆盖方法,你就必须声明默认样式。 css也是
更新:
在D7中只能使用.info文件来覆盖JS,但是有模块 JSAlter 这可能对 D6 有帮助
can you not theme it just by changing the CSS?
In your theme's .info file you can override the module's
css
and/orjs
and then you copy the css or js file from the module into your own theme folder, (every theme should have a .info, if not create one) - this means you don't touch the actual contrib modules filesDrupal will then use the one from your theme, which you can edit to your hearts content, and if you do hit problems you just remove the entry from the .info file and it will then go back to using the original module filea.
I haven't done it for JS but I believe the process is the same as for CSS and here is a snippet of what's in my .info file - btw I think once you use this method of overriding you have to declare the default style.css too
Update:
It's only possible to use the .info file to override JS in D7, but there is module JSAlter which might help with D6