在magento中的phtml中包含phtml文件
您好,我已经添加了 inhoot 特色产品,但希望它们显示在标题中,以便在每个页面上显示,我尝试移动代码,我尝试过:
echo $this->getLayout()->createBlock('Mage_Adminhtml_Block_Template', 'block-name')->setData('template', 'inchoo/block_featured_products.phtml')->toHtml()
我是 magento 的新手,所以我不知道
谢谢 格雷厄姆
Hi I have added the inchoo featured products but want them to show in the header so show on everypage, i tried moving the code, i tried:
echo $this->getLayout()->createBlock('Mage_Adminhtml_Block_Template', 'block-name')->setData('template', 'inchoo/block_featured_products.phtml')->toHtml()
Im kind of new to magento so i don't know
thanks
Graham
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个 CMS 静态块并为其指定一个标识符名称,例如“featured_product”。
从 app/design/frontend/default/YOURTEMPLATE/layout/page.xml 打开 page.xml 文件
找到 html_header 部分,现在添加以下代码
接下来打开 app/design/frontend/default/YOURTEMPLATE/template/page/html/header.phtml 文件。
找到要设计的区域并在其中添加以下代码:
清理缓存并测试您的页面。
Create a CMS static block and give a identifier name to that, lets say "featured_product".
Open page.xml file from app/design/frontend/default/YOURTEMPLATE/layout/page.xml
Find the section html_header, now add the following code
Next open the app/design/frontend/default/YOURTEMPLATE/template/page/html/header.phtml file.
Find the area to design and add the following code in there :
Clean cache and test your page.