Drupal 6:从 div 中提取搜索表单的输入字段
关于主题搜索表单的 Drupal 文档说道: * $search['search_theme_form']:包裹在 div 中的文本输入区域。
我想要制作 drupal 主题的 html 页面使用特殊的搜索表单,因此我不希望表单的元素被包装到 div 中。如何获得不包含在 div 中的干净搜索表单元素?
The Drupal documentation about theming search forms says:
* $search['search_theme_form']: Text input area wrapped in a div.
My html page which i want to make a drupal theme uses a special search form so i don't want the form's elements to be wrapped into a div. How can i get the clean search form elements not wrapped into div?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Drupal 文档几乎说明了一切: http://drupal.org/node/45295
如果您只是想删除
div
容器覆盖模板search-theme-form.tpl.php
或任何负责输入搜索字段的模板。您可以在上面的链接中找到有关如何覆盖的说明。如果您想要更多的自定义,则必须执行 Drupal 教程中的步骤 #2。
所以从这里:
到这里:
不要忘记清除 Drupal 的站点缓存。
Well the Drupal documentation pretty much says it all: http://drupal.org/node/45295
If you just want to remove the
div
container overwrite the templatesearch-theme-form.tpl.php
or whatever template is responsible for the input search field. You have the instruction on how to overwrite in the link above.If you want more customization than you'll have to do step #2 from the Drupal tutorial.
So from this:
To this:
Don't forget to clear the Drupal's site cache.