Magento:attributes.phtml控制的块的引用名称是什么? (使用EasyTabs)

时间:2013-01-02 19:41:08

标签: magento magento-1.7

我正在使用Magento和EasyTabs扩展程序。我有一个自定义的attributes.phtml我想用于某些产品,我正在尝试使用设计更新XML来切换特定产品上的自定义属性的默认attributes.phtml。我正试图找出该块的正确引用名称。

块的模板提示显示:

frontend/default/MY_THEME_NAME/template/easytabs/attributes.phtml

我正在尝试用于布局更新的XML是:

<reference name="[REFERENCE NAME???]">
<action method="setTemplate"><template>[CUSTOM ATTRIBUTES.PHTML]</template></action>
</reference>

我试过了:

product.info.attributes 
product_info_attributes 
product.attributes 
product_attributes
easytabs.attributes
easytabs_attributes
product.view.attributes
product_view_attributes

这些都不起作用。使用EasyTabs时,此块的正确引用名称是什么?

1 个答案:

答案 0 :(得分:5)

我不知道“EasyTabs”是什么,但如果您暂时编辑attributes.phtml以包含以下内容

<?php var_dump($this->getNameInLayout()); ?>

块的名称将输出到屏幕。