magento 产品描述页新增一个tab,调用静态block/static block 内容的方法: 1. 在管理后台的 cms-->static block 新增一个 静态block, 注意创建的 identifier 名称, 这里我假设创建了一个identifier为 shipping 的静态block 2. 创建模型文件:在自己的模版目录的template文件夹里面,新创建一个文件夹为 myblock,在里面新建一个phtml类型的文件,比如 shipping.phtml 3. 打开shipping.html, 录入此代码: <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('shipping')->toHtml() ?>
4. 在自己的模版目录的layout文件夹里面,编辑local.xml 或 review.xml, 新增 <catalog_product_view> <reference name="product.info.tabs"> <block type="myblock/shipping" name="shipping" as="shipping" /> <action method="addTab" translate="title" module="review"> <alias>shipping</alias> <title>Shipping</title> <block>review/product_view_list</block> <!-- 这行不要改变 --> <template>myblock/shipping.phtml</template> </action> </reference> </catalog_product_view> 刷新前台产品页面,就会看到新增的shipping tab这个标签。 (责任编辑:最模板) |