访问此链接:http://www.firstcry.com/toys-and-gaming?ref2=menu_dd
在“菜单”下,您可以在
下方看到“玩具查找器”“1.child's age”,“2.categoty”,“3.price”。
我们可以通过选择以上3个选项来选择产品。
在“Shop by”下面,我们可以在每个站点看到这些选项。
如何在产品列表页面或主页中显示这些选项..?...
请帮我找到解决方案。
提前感谢。
答案 0 :(得分:1)
所以首先你必须要了解它是如何出现的,magento可以选择显示块的路径等,就像你知道他在哪里以及他是如何出现的一些研究一样,你会有一些想法添加到家。
在学习操作后,你可以尝试在家中使用exibilo。
示例:
// Create a file in the template folder, and add the filter code.
// In my example I created a page called test in "template/page/html".
// And to display in the home, I used that way
<?php echo $this->getLayout()->createBlock('core/template')->setTemplate('page/html/test.phtml')->toHtml();?>
<?php echo $this->getChildHtml('test'); ?> //I used the name of page without extension.
// this way you can add some code in a some page and use somewhere.
还有其他方法,例如通过xml,复制或移动块,但在你需要知道它是如何被推出之前以及之后搜索的最佳方式。
我以任何方式帮助过你。