Magento:将脚本phtml添加到产品页面

时间:2014-03-20 09:22:32

标签: magento

我有一个phtml脚本,我想将它添加到价格框div下面的产品页面视图或img描述我要在页面源中添加它的内容:

enter image description here

我试过这个:

<?xml version="1.0" encoding="UTF-8"?>
    <layout version="0.1.0">

        <catalog_product_view>
              <reference name="product.info">
                <block type="core/template" name="customprice" as="other" template="customprice/extJs.phtml"/>
              </reference>
        </catalog_product_view>
    </layout>

但什么都没做!你能解释为什么以及如何解决它吗?

1 个答案:

答案 0 :(得分:1)

app/design/frontend/base/default/template/catalog/product/view.phtml文件中

更改&#34;其他&#34;的名称to&#34; otherjs&#34;在你的xml中

    <?php if ($_product->getShortDescription()):?>
                    <div class="short-description">
                        <h2><?php echo $this->__('Quick Overview') ?></h2>
                        <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
                        <div><?php echo $this->getChildHtml('otherjs');//changes here?></div>
                    </div>
                <?php endif;?>