Set Category, Product n Information Spesific Template
2 posts
• Page 1 of 1
Set Category, Product n Information Spesific Template
In this tutorial we will learn on how to make spesific template for Category, Product and Information. Some post forum already mention this with various method, but I try to use the simplest method.
And before we continue, I want to clarify that Template refer to .tpl file on Opencart theme. Regardless the theme you use, word "template" refer to .tpl file.
What we want to achieve here?
In this tutorial I only show you how to achieve with Category, and the same method is applied for Product and Information. And you can download the vQmod file that already modificate the Category, Product and Information at bottom of the page.
Note:
Since most user unable to reply this post, if you want to suggest think to improve this tutorial you can PM me. No Question Please!
Make new post on Support Forum if you have any question.
And before we continue, I want to clarify that Template refer to .tpl file on Opencart theme. Regardless the theme you use, word "template" refer to .tpl file.
What we want to achieve here?
- Load spesific template for category, product and information based on the id.
- If spesific template is not available, then use the general template. ex. category.tpl, product.tpl, information.tpl
- The same thing applied to load stylesheet spesifically.
In this tutorial I only show you how to achieve with Category, and the same method is applied for Product and Information. And you can download the vQmod file that already modificate the Category, Product and Information at bottom of the page.
- Open catalog\controller\product\category.php
- Load spesific template:
- Code: Select all
// FIND :
if (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';
}
// REPLACE :
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';
}
/* Explanation :
1. The code will search spesific template based on it ID. ex: category_18.tpl.
2. If the spesific template is not available, Opencart will use the general template of active theme (category.tpl).
3. If the template of spesific theme is not available, Opencart will use template from default theme.
*/
- Load spesific stylesheet:
- Code: Select all
// FIND :
$this->document->setTitle($category_info['name']);
// PUT BEFORE :
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/stylesheet/category_'.$category_id.'.css')) {
$this->document->addStyle('catalog/view/theme/' . $this->config->get('config_template') . '/stylesheet/category_'.$category_id.'.css');
}
/* Explanation :
1. The code will search spesific stylesheet based on it ID. ex: category_18.css.
2. If the spesific stylesheet available then load it, if not then do nothing.
*/
- Example of folder structure:
- stylesheet/
- stylesheet.css
category_18.css
product_17.css
information_3.css- product/
- category.tpl
category_18.tpl
product_17.tpl- information/
- information.tpl
information_3.tpl
Note:
Since most user unable to reply this post, if you want to suggest think to improve this tutorial you can PM me. No Question Please!
Make new post on Support Forum if you have any question.
My product: Opencart Blog Manager Free System Information
OpencartNews - News, Tutorial n Tips - Common OpenCart Errors and How to Solve Them
Don't forget to add [SOLVED] to your Thread Title (first post), if your issue is solved.
OpencartNews - News, Tutorial n Tips - Common OpenCart Errors and How to Solve Them
Don't forget to add [SOLVED] to your Thread Title (first post), if your issue is solved.
-

qahar - Posts: 1647
- Joined: Tue Jun 29, 2010 2:24 pm
- Location: Indonesia
2 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 2 guests















