在 magento 中点击菜单项显示搜索结果

发布于 2024-10-31 02:02:29 字数 135 浏览 0 评论 0原文

默认情况下,搜索功能是这样实现的。 用户在输入搜索框中输入一些文本,然后单击“搜索”按钮,就会出现搜索结果。

但我希望通过单击顶部菜单栏中的菜单项“搜索”而不是默认的“搜索按钮”来显示搜索结果。

这怎么办呢。请建议。谢谢。

By default the search functionality is implemented this way.
User enters some text in the input search box and on click of "search" button the search results come up.

But I want the search results to show up on click of a menu item "Search" in top menu bar instead of the default "Search button".

How can this be done. Please suggest. Thanx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

长途伴 2024-11-07 02:02:29

未经测试!将其放在主题布局中的某个位置。

<default>
    <reference name="top.links">
        <action method="addLink" translate="label title">
            <label>Search</label>
            <url>javascript:searchForm.form.submit()</url>
            <title>Click Here To Search</title>
        </action>
    </reference>
</default>

然后,当它工作时,从 catalogsearch/form.mini.phtml 模板中删除旧按钮。

Not tested! Put this somewhere in your theme's layout.

<default>
    <reference name="top.links">
        <action method="addLink" translate="label title">
            <label>Search</label>
            <url>javascript:searchForm.form.submit()</url>
            <title>Click Here To Search</title>
        </action>
    </reference>
</default>

Then when it is working remove the old button from the catalogsearch/form.mini.phtml template.

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