opencart假發(fā),驗(yàn)證碼magento
2022-10-20 14:25:59 - 米境通
使用過opencart的朋友們都知道,在給商品寫評(píng)論時(shí),會(huì)要求輸入一個(gè)4位的驗(yàn)證碼。應(yīng)該如何去掉它呢。
首先要修改的文件:catalog/view/theme/template/product/product.tpl
搜索captcha找到相關(guān)行,刪除相關(guān)的代碼,不同主題可能不同:
然后要修改的文件是:catalog/controller/product/product.php
搜索captcha找到相關(guān)行,刪除如下兩段代碼!
$this->data['entry_captcha']=$this->language->get('entry_captcha');
if(emptyempty($this->session->data['captcha'])||($this->session->data['captcha']!=$this->request->post['captcha'])){
$json['error']=$this->language->get('error_captcha');
}
然后替換這兩個(gè)修改的文件,此時(shí),我們?cè)趏pencart里寫商品評(píng)論時(shí)會(huì)再需要輸入驗(yàn)證碼了。
相關(guān)問答: