Magento topSearch 在模板中不起作用
我想从标题中获取 topSearch 并将其复制到内容页面,因此我从 header.phtml
中剪切并添加到 3columns.phtml
:
<?php echo $this->getChildHtml('topSearch'); ?>
它不起作用,尽管。有什么想法吗?
I want to take topSearch from the header and copy it to a content page, so I cut from header.phtml
and added to 3columns.phtml
:
<?php echo $this->getChildHtml('topSearch'); ?>
It doesn't work, though. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了将搜索栏位置标题更改为顶部链接的解决方案。
前往:-
将此代码替换
为
根据您的设计更改 css。
这对我有用
I found solution for change the search bar position header to top links.
go to:-
replace this code
with this
Changes css according to your design.
it woks for me
.form-search
margin-left: 899px;
顶部边距:8px;
位置:绝对;
添加上面的css
让搜索框位于标题本身
只需使用绝对属性,您就可以播放来显示其位置
通过我的电子邮件联系我以获得进一步的帮助。
谢谢。
苏拉吉·米什拉
Magento 扩展开发人员
[电子邮件受保护]
.form-search
margin-left: 899px;
margin-top: 8px;
position: absolute;
add the above css
let the search box on the header itself
just using the absolute property you can play to display its position
contact me on my email for furthur help.
Thanks.
Suraj Mishra
Magento Extension Developer
[email protected]