在我的magento details
页面中有一个tabcontent
当我单击(参见图)时 ,我想 在特定产品评论下的选项卡上显示我的评论review
请帮我解决
在我的magento details
页面中有一个tabcontent
当我单击(参见图)时 ,我想 在特定产品评论下的选项卡上显示我的评论review
请帮我解决
好吧,忘记我说的一切。假设您有:
<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);
}
});
});
添加
<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 中打印您的评论
试试这个免费的扩展: Magento EasyTabs
它涵盖了您的所有需求(描述、详细信息、评论......)。