Task: replace the category.tpl template with your (modified) one. Opencart 2.1, so that in the future you can follow the link to watch the modified template index.php?route=product/category
If you leave the category.tpl file name, then the new template is visible. If you change the name of the template to any other name - an error: a blank screen .
Change in file: catalog / controller / product / category.php
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/product/category1.tpl')) { $this->response->setOutput($this->load->view($this->config->get('config_template') . '/template/product/category1.tpl', $data)); } else { $this->response->setOutput($this->load->view('default/template/product/category1.tpl', $data)); } It was made on this manual .
What could be the problem?