Sunday, July 3, 2011
One Category Show with its Subcategory -Opencart Module --By Rupak Nepali
One Category Show with its Subcategory -Opencart Module --By Rupak Nepali
This is One Category Show module created for OpenCart 1.5+ to 1.5.0.4 and is intended to show all prodcut on the defined category at the backend.
NOTE: There are no overiding of the function and files so no need to wory.
----------------------------------------------------------------
Installation
--------------
To install move all the files on the folder to the respective folder.
Before you can actually start using the import you need to allow both access and modify permissions for module/categoryshow in the OpenCart admin panel under system->user->user groups
After that click on the Extensions >> Modules >> Category Show >> Edit and define the parameters and it is done.
The category choosen at the backend will show the product in the list.
----------------
New Database tables added
----------------
No need of database installation
----------------
----------------
Copyright
----------------
Created by Rupak in 2011 for OpenCart 1.5.0.4 and released under the GNU GPL. The License should have been included with this module. If it has not then you can get the license from http://www.gnu.org/licenses/gpl.html
----------------
Bugs
----------------
Found any bugs then comment at
http://rupaknpl.blogspot.com/2011/07/one-category-show-with-its-subcategory.html





6 comments:
What makes different between v1.5.0.4 and v1.5.0.5?
Why I can not install this module in version 1.5.0.5?
Thanks
Fatal error: Call to undefined method ModelDesignLayout::getCategories() in C:\xampp\htdocs\cart151\admin\controller\module\categoryshow.php on line 97
Sory i forget to upload one file and the file is missing wait for some minute i will replace the things
@ Bach Thuy
Edit these lines on admin/controller/module/categoryshow.php
$this->load->model('design/slideshow');
$this->data['layouts'] = $this->model_design_layout->getLayouts();
$this->data['categories'] = $this->model_design_layout->getCategories();
============================
to these
============================
$this->load->model('design/categoryshow');
$this->data['layouts'] = $this->model_design_categoryshow->getLayouts();
$this->data['categories'] = $this->model_design_categoryshow->getCategories();
Thank you very much
Hey, I'm using this and it's great for my needs, after I made some changes. I think you ought to change the names of your modules though. I couldn't tell from the name that this is what I needed. I only knew because an opencart forum poster told me that someone had just uploaded something that would do what I needed, and I saw the word "category" in the title. Thanks
Post a Comment