如何在产品页面中启用默认的“产品评级审核”表单,在Megento 1.9中

时间:2017-04-11 07:47:16

标签: php jquery magento magento-1.9

我正在尝试在我的产品页面上启用默认评级审核表单。我遇到的问题是“成为第一个审查产品”正在出现,但链接不起作用。 This is my product page 当我第一次点击链接时,链接会重定向到另一个页面(URL:localhost / Magento / review / product / list / id / 28 /#review-form)。 this is my second page and again when I clicked on the link nothing happens

我需要的更改

在管理面板中,启用产品评级。并且“目录 - >评级和评论 - >管理评级”在那里我给出了“价值,prica和quakity”的排序顺序。

IN BACKEND

<div class="product-collateral toggle-content tabs">
    <?php if ($detailedInfoGroup = $this->getChildGroup('detailed_info', 'getChildHtml')):?>
        <dl id="collateral-tabs" class="collateral-tabs">
            <?php foreach ($detailedInfoGroup as $alias => $html):?>
                <dt class="tab"><span class="nav nav-tab "><?php echo $this->escapeHtml($this->getChildData($alias, 'title')) ?></span></dt>
                <dd class="tab-container">
                    <div class="tab-content"><?php echo $html ?></div>
                </dd>
            <?php endforeach;?>
        </dl>
    <?php endif; ?>
</div>

任何人都可以帮忙解决此问题。谢谢!

1 个答案:

答案 0 :(得分:0)

按照以下说明操作:

第1步: - 转到app-&gt;设计 - &GT; frontend-&GT;您的包裹名称(base / rwd) - &gt;你的主题(默认......) - &gt;于版图&GT; review.xml

步骤2: - 将以下代码粘贴到review.xml并刷新产品视图页面。转到标签,现在您可以看到评论表单。

<catalog_product_view>
        <reference name="product.info">
            <block type="review/product_view_list" name="product.reviews" as="reviews" template="review/product/view/list.phtml" after="additional">
                <action method="addToParentGroup"><group>detailed_info</group></action>
                <action method="setTitle" translate="value"><value>Reviews</value></action>
                <block type="review/form" name="product.review.form" as="review_form" />
            </block>
        </reference>
    </catalog_product_view>