catalog>controller>checkout>cart.php de
$quantity = $this->request->post['quantity'];
satırını bulun ve
//$quantity = $this->request->post['quantity'];
$quantity=1;
şeklinde değiştirin.
bu şekilde her üründen yanlızca 1 tane sipariş verilebilir.
eğer sepette yanlızca 1 satır ve 1 ürün olsun istiyorsanız.
public function add() {
satırını bulun ve altına
if($this->cart->countProducts()==0){
ekleyin ve
}
public function quote() {
satırının üstüne
}
ekleyin