Answer the question
In order to leave comments, you need to log in
How to find out if a product has been added to comparison in opencart?
The category works like this.
controller
$in_compare = 0;
if (isset($this->session->data['compare'])) {
$key = array_search($result['product_id'], $this->session->data['compare']);
if ($key !== false) {
$in_compare = 1;
}
}
$data['in_compare'] = $in_compare;
Answer the question
In order to leave comments, you need to log in
wrote a question and realized that everything is simple) it was necessary to load $this->load->model('catalog/category');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question