删除结帐页面上的搜索字段 (Magento)

Remove search field on checkout page (Magento)

我正在寻找一种方法来删除我的 Magento 商店结帐页面上的搜索字段。

搜索字段在 header 中,所以我无法从那里删除它,因为它会从网站的所有页面中删除。

简而言之:我想在网站的所有位置保留搜索功能,结帐页面除外。

我该怎么做?

把这个加在你身上local.xml

 <onestepcheckout_index_index>
    <reference name="header">
            <remove name="top.search"/>
    </reference>
   </onestepcheckout_index_index>

您可以使用 css 从结帐页面中删除搜索字段。

转到您的结帐页面,您可以找到结帐页面的正文 class,您可以使用它删除它。

例如:如果您有结帐 class "checkout-onestep-index"

然后 css 如下:

.checkout-onestep-index .search{显示:none;}