before opencart 2.2 version
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/product/category_' . $category_id . '.tpl')) {
$this->template = $this->config->get('config_template') . '/template/product/category_' . $category_id . '.tpl';
} elseif (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/product/category.tpl')) {
$this->template = $this->config->get('config_template') . '/template/product/category.tpl';
} else {
$this->template = 'default/template/product/category.tpl';
}
opencart 2.2 version onwards
Since Opencart changed its method from 2.2 that code doesn't work anymore, you can modify it like this:
First we must know which theme is active, store its name in a variable
$config_theme = $this->config->get('config_theme') == 'theme_default' ? 'default' : $this->config->get('config_theme');
Then we must check if there is a file specially for current category, for example if we are on category 20, we check for category_20.tpl existance.
if (file_exists(DIR_TEMPLATE . $config_theme . '/template/product/category_' . $category_id . '.tpl')) {
If found that file:
$view = 'product/category_' . $category_id;
if there is no such file, use original file: category.tpl
} else {
$view = 'product/category';
}
load selected view file based on above statement.
Since Opencart changed its method from 2.2 that code doesn't work anymore, you can modify it like this:
First we must know which theme is active, store its name in a variable
Then we must check if there is a file specially for current category, for example if we are on category 20, we check for category_20.tpl existance.
If found that file:
if there is no such file, use original file: category.tpl
load selected view file based on above statement.
conclusion:
find
$this->response->setOutput($this->load->view('product/category', $data)); in catalog/controller/product/category.php and replace it with above codes, here is full code:
|
Comments
Post a Comment