0

在我的magento details页面中有一个tabcontent

在此处输入图像描述

当我单击(参见图)时 ,我想 在特定产品评论下的选项卡上显示我的评论review

请帮我解决

4

3 回答 3

1

好吧,忘记我说的一切。假设您有:

<div id="review"></div>

在此评论中,您将进行产品评论。首先,您需要一个控制器来带您的产品。我假设你知道这样做。所以让我们来看看ajax。

$('#review').live('click',function(){
    $.ajax({
        url: '<?= Mage::getBaseUrl() ?>/catalog/product/review', //lets assume you'r using ProductController the reviewAction().
        success: function(data) {
            $('#review').html(data);        
        }
    });
});
于 2012-11-06T10:47:48.163 回答
1

添加

<reference name="content">   
    <block type="review/product_view_list" name="product.info.product_additional_data" as="product_review" template="review/product/view/list.phtml">
       <block type="review/form" name="product.review.form" as="review_form"/>
    </block> 
</reference>

在catalog.xml文件下

用于<?php echo $this->getChildHtml('product_review') ?>在 tabcontent 中打印您的评论

于 2012-11-07T05:30:00.667 回答
0

试试这个免费的扩展: Magento EasyTabs

它涵盖了您的所有需求(描述、详细信息、评论......)。

于 2012-11-06T12:09:00.293 回答