如果有人点击结帐,它应该检查小计是否大于或等于,如果它满足条件它应该成功重定向到结帐页面,否则它应该重定向到购物车页面
我已在catalog / controller / checkout / cart.php中添加了此代码
这是我的代码
$this->data['stotal'] = 1000;
if ($this->cart->getSubtotal() <= $this->data['stotal'] ){
$this->session->data['error'] = 'Minimum amout should be 1000 to checkout';
$this->redirect($this->url->link('checkout/cart'));
$this->data['checkout'] = false;
} else {
$this->data['checkout'] = $this->url->link('checkout/checkout', '', 'SSL');
}
我收到此错误
“页面未正确重定向”
如果我对重定向网址发表评论,那么它会重定向到主页,但“最低限额应该是1000结账”消息会长时间停留,只有在我点击关闭图标后才会显示
注意:我在1.5+而不是2.0
中尝试此操作