如何从主页调用搜索栏到Magento 1.9中的所有其他页面?

时间:2017-05-15 10:04:55

标签: php xml magento magento-1.9

我的搜索栏目前位于我的主页(http://www.ashvinrx.com/magento/index.php/)。   block type =“core / template”name =“top.search”as =“topSearch”template =“catalogsearch / form.mini.phtml”/>  

我想让搜索栏显示在我的“新产品”页面上http://www.ashvinrx.com/magento/index.php/newproducts).Please帮助。

2 个答案:

答案 0 :(得分:1)

看起来这是cms页面。

您可以在该页{{block type="core/template" name="top.search" template="catalogsearch/form.mini.phtml"}}

中添加此代码

,搜索栏将显示在该页面上。如果你想在任何特定的地方展示这个,请告诉我,我会引导你。

答案 1 :(得分:0)

您也可以在phtml文件中尝试此代码。

insert into service_enrollments (device_id, channel_id, enrollment_status, created_at, updated_at) 
select devices.id, devices.channel_id, 'registered', bas_tokens.created_at, bas_tokens.created_at 
from devices, bas_tokens 
where devices.id not in (select device_id from service_enrollments) and devices.channel_id is not null and devices.id = bas_tokens.id;