Answer the question
In order to leave comments, you need to log in
How to update additional value in cart?
Hello, there was a need to transfer an additional value to the basket.
No problem adding$this->request->post['price_custom']
$this->cart->add($this->request->post['product_id'], $quantity, $this->request->post['price_custom'], $option, $recurring_id);
if (!empty($this->request->post['quantity'])) {
foreach ($this->request->post['quantity'] as $key => $value) {
$this->cart->update($key, $value);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question