OpenCart - 中文论坛

标题: 新手求助,删除register,checkout时的选项 [打印本页]

作者: mathema35    时间: 2012-6-23 10:14
标题: 新手求助,删除register,checkout时的选项
新手刚到,有问题求且,我用的是1.5.2.1英文版本

因为我卖的是网络服务,顾客不需要填写个人地址,电话之类的,之前有好几个因为要填写个人信息直接离开,郁闷哦,自己试过直接删除register.tpl里的选项,均提示错误

有没有热心人提供下帮助,感激不尽


不好意思,刚刚发错版区,发到外贸区,请版主拒绝发布之前那个贴子
作者: bossbbx    时间: 2012-6-26 16:44
opencart是MVC模式,不像一般的程序。register.tpl里只是显示,不检查合法性。 catalog/controller/account/register.php 里有检查的代码,

函数private function validate()检查合法性,不合法的保存到先把警告语言保存到error对象中,$this->error['email'] = $this->language->get('error_email');  

if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate()) {...}通过这段代码判断是否正确,如正确就保存到数据库$this->model_account_customer->addCustomer($this->request->post); 然后直接登录$this->customer->login($this->request->post['email'], $this->request->post['password']); 最后$this->redirect($this->url->link('account/success'));跳转到会员中心,如不正确则继续往下执行代码,不合法的地方就显示error对象中保存的信息。

比如
                if (isset($this->request->post['telephone'])) {
                    $this->data['telephone'] = $this->request->post['telephone'];
                } else {
                        $this->data['telephone'] = '';
                }

catalog/model/account/customer.php里是保存到数据库里的代码,函数public function addCustomer里的SQL命令根据需要修改




欢迎光临 OpenCart - 中文论坛 (https://bbs.opencart.cn/) Powered by Discuz! X3.2