服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

如何自动显示magento产品评论Products Reviews

时间:2011-11-17 13:30来源:未知 作者:最模板 点击:
在magento里面,magento产品评论默认是需后台审核才能在前台显示的,下面最模板教你把它改成自动显示。首先找到app/code/core/Mage/Review/controllers/ProductController.php 打开编辑171行,把STATUS_PE

 在magento里面,magento产品评论默认是需后台审核才能在前台显示的,下面最模板教你把它改成自动显示。首先找到app/code/core/Mage/Review/controllers/ProductController.php 打开编辑171行,把”STATUS_PENDING”替换成”STATUS_APPROVED”:

 

  1. $review->setEntityId($review->getEntityIdByCode(Mage_Review_Model_Review::ENTITY_PRODUCT_CODE)) 
  2.       ->setEntityPkValue($product->getId()) 
  3.       ->setStatusId(Mage_Review_Model_Review::STATUS_APPROVED) 
  4.       ->setCustomerId(Mage::getSingleton('customer/session')->getCustomerId()) 
  5.       ->setStoreId(Mage::app()->getStore()->getId()) 
  6.       ->setStores(array(Mage::app()->getStore()->getId())) 
  7.       ->save(); 

 

(责任编辑:最模板)
顶一下
(1)
100%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容