我正在尝试在Magento商务的产品页面上添加几个自定义标签,跟随其他教程,但没有看到任何帮助我的内容。
正如this tutorial中指定的那样,我要添加一些自定义标签,例如:说明,补充说明, LABEL , 评分和评论和 Q&一个(来自教程链接)
customtab.phtml有:
<?php
//Load the product
$_helper = $this->helper('catalog/output');
$_product = $this->getProduct()
//Get additional data if the product has it
if($_additional = $this->getAdditionalData()):
//Finally, get the attribute label and close your if statement. Remember to change ingredients to the label you created.
?>
<?php echo $_product->getResource()->getAttribute('customtab')->getFrontend()->getValue($_product); ?>
<?php endif;?>
注意:'customtab'已作为属性添加到我的默认属性集
布局,我有:
<block type="catalog/product_view_attributes" name="product.attributes" as="additional" template="catalog/product/view/attributes.phtml"><br/>
<action method="addToParentGroup"><group>detailed_info</group></action>
<action method="addTab" translate="title" module="catalog">
<alias>customtab</alias>
<title>Custom Tab</title>
<block>catalog/product_view_attributes</block>
<template>catalog/product/view/customtab.phtml</templat>
</action>
</block>
知道如何添加自定义标签吗?