对于中国人用两个字做为姓名的很常见,如:张三,Opnecart原始的姓名字数是3个,对于我们中国人来说有点不太适合,所以我们可以改一个这个页面的字数限制,顺便把留言内容也一起改了! vim catalog/controller/information/contact.php if ((utf8_strlen($this->request->post['name']) < 3) || (utf8_strlen($this->request->post['name']) > 32)) {//这一行里的3改成2,大致在166行 if ((utf8_strlen($this->request->post['enquiry']) < 10) || (utf8_strlen($this->request->post['enquiry']) > 3000)) {//这个是内容区域,字数改成自己想要的,大致在174行 下面我们来更改提交时的弹出说明 vim catalog/language/english/information/contact.php $_['error_name'] = 'Name must be between 3 and 32 characters!';//这一行的3改成2 大致在25行 $_['error_enquiry'] = 'Enquiry must be between 10 and 3000 characters!';//这里按自己需求改,大致在27行(责任编辑:最模板) |