opencart filterpro module isn't working, pagination doesn't read the page variable
in the controller catalogcontrollermodulefilterpro.php
if(isset($this->request->post['limit']) &&($this->request->post['limit']>0) ) {
$limit = $this->request->post['limit'];
} else {
$limit = $this->config->get('config_catalog_limit');
}
Comments