Hi,
Opencart is not showing all the items that have special prices.
http://valleydez.com/index.php?route=product/special
Its a custom theme, earlier it was working fine and didn't even updated. Can any body please check and resolve it?
Thank you
Fixed it by replacing the code on line 229 from:
with:
Code: Select all
foreach($limits as $limit){
$this->data['limit'][] = array(
'text' => $limit,
'value' => $limit,
'href' => $this->url->link('product/special', $url . '&limit=' . $limit)
);
}
Code: Select all
foreach($limits as $limits){
$this->data['limits'][] = array(
'text' => $limits,
'value' => $limits,
'href' => $this->url->link('product/special', $url . '&limit=' . $limits)
);
}
Who is online
Users browsing this forum: No registered users and 9 guests