带有视图和 CCK 字段的 Drupal 6 高级搜索表单
我正在寻找高级搜索模块,该模块将公开 CCK 字段以供搜索。我知道使用 Views2 我们可以将 CCK 字段公开为过滤器。但是,无法将 CCK 文本字段转换为复选框。例如,我添加并公开了组搜索过滤器(搜索:搜索词)。为了提供帮助,我想添加 2 个复选框,例如标题和/或描述中的搜索,它们是 CCK 文本字段。我找不到通过标题和/或描述 CCK 字段中的功能搜索将它们更改为复选框的方法。
同样,我想添加其他辅助搜索字段,例如使用最小-最大(中间)值、邮政编码+地理位置搜索过滤器提交的价格文本中的搜索。
您能否建议我一些模块或提示来实现这一目标?
I am looking for Advance search module that'll expose CCK fields for search. I know using Views2 we can expose the CCK fields as a filter. However its not possible to convert CCK text fields as checkboxes. For e.g. I have added and exposed filter of group Search (Search: Search Terms). To assist I want to add 2 check-boxes like search in Title and/or Description which are CCK Text fields. I couldn't find way to change them as check-boxes with functionality search in Title and/or Description CCK fields.
Similarly, I want to add other assisting search fields like Search in Price Text filed with min-max (in- between)values, zip code + Geo-proximity search filters.
Could you please suggest me some module or hint to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过更好的暴露过滤器。它将允许您使用复选框/单选元素
[编辑]
您可能必须求助于使用hook_form_alter和hook_views_query_alter
在表单alter中,您可以将元素添加到过滤器表单中,然后在views_query_alter中您可以根据形成价值观。
Have you tried Better Exposed Filters. It will allow you to use checkbox / radio elements
[Edit]
You may have to resort to using a hook_form_alter and hook_views_query_alter
In the form alter you can add elements to the filter form, and then in the views_query_alter you can change the query depending on the form values.