带有视图和 CCK 字段的 Drupal 6 高级搜索表单

发布于 2024-10-27 08:40:25 字数 297 浏览 3 评论 0原文

我正在寻找高级搜索模块,该模块将公开 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪我太投入 2024-11-03 08:40:25

您是否尝试过更好的暴露过滤器。它将允许您使用复选框/单选元素

[编辑]

您可能必须求助于使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文