我正在尝试在 Magento Commerce 上的产品页面中添加几个自定义选项卡,遵循其他教程,但没有看到任何对我有帮助的东西。
正如它在本教程中指定的那样,我将添加一些自定义选项卡,例如:DESCRIPTION、SUPPLEMENT FACTS、LABEL、RATING AND REVIEWS和Q & A(来自教程链接)
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>
知道如何添加自定义标签吗?