如何在Magento 1.9中的欢迎语言栏中添加搜索框?

时间:2015-12-21 13:57:14

标签: magento

我正在研究Magento 1.9。我需要在欢迎信息栏中显示搜索框。它可以通过黑客攻击来管理,但这不是正确的方法。

有人可以帮我解决这个问题吗?

提前致谢。

1 个答案:

答案 0 :(得分:1)

显示隐藏搜索框或按xml删除该搜索框,然后转到app\design\frontend\yourtheme\default\template\page\html打开header.phtml并将以下代码放在您要显示的位置。现在用css来修复风格。

 <?php echo $this->getChildHtml('topSearch') ?> 

例如

<div class="header-language-background">
    <div class="header-language-container">
        <div class="store-language-container">
            <?php echo $this->getChildHtml('store_language') ?>
        </div>

        <?php echo $this->getChildHtml('currency_switcher') ?>

        <p class="welcome-msg"><?php echo $this->getChildHtml('welcome') ?> <?php echo $this->getChildHtml('accountLinks') ?></p>
        <?php echo $this->getChildHtml('topSearch') ?> 
    </div>
</div>

enter image description here