Modules for OpenCart 2.3.0.2
Homepage Module [Free - since OpenCart 0.7.7]
Multistore Extensions
Store Manager Multi-Vendor/Multi-Store management tool
If you're not living on the edge ... you're taking up too much space!
All my modules have a version number, eg "news_134", that corresponds with the version of OpenCart for which they are intended.
Modules for OpenCart 2.3.0.2
Homepage Module [Free - since OpenCart 0.7.7]
Multistore Extensions
Store Manager Multi-Vendor/Multi-Store management tool
If you're not living on the edge ... you're taking up too much space!
Thanks for your replies
I downlaoded the module with this motice NOTE: This package is intended for use with OpenCart versions 1.2.8 and later (tested on 1.2.8 and 1.2.9), and is not compatible with earlier versions.
The other download says it's for 1.2.9. I can't see a news module intended for version 134 theres only 2?
Thanks
Taz
Modules for OpenCart 2.3.0.2
Homepage Module [Free - since OpenCart 0.7.7]
Multistore Extensions
Store Manager Multi-Vendor/Multi-Store management tool
If you're not living on the edge ... you're taking up too much space!
Modules for OpenCart 2.3.0.2
Homepage Module [Free - since OpenCart 0.7.7]
Multistore Extensions
Store Manager Multi-Vendor/Multi-Store management tool
If you're not living on the edge ... you're taking up too much space!
Modules for OpenCart 2.3.0.2
Homepage Module [Free - since OpenCart 0.7.7]
Multistore Extensions
Store Manager Multi-Vendor/Multi-Store management tool
If you're not living on the edge ... you're taking up too much space!
Get it from http://www.fido-x.net/index.php?route=p ... duct_id=66
Modules for OpenCart 2.3.0.2
Homepage Module [Free - since OpenCart 0.7.7]
Multistore Extensions
Store Manager Multi-Vendor/Multi-Store management tool
If you're not living on the edge ... you're taking up too much space!
Thanks for your update and for helping us with your contributions

Best regards.
Thank you.fido-x wrote:Sponsors Module has been updated for OpenCart version 1.3.4. Now includes "clickthru" statistics in the administration.
Get it from http://www.fido-x.net/index.php?route=p ... duct_id=66
There is missing a var in your cart:

Damn! I knew I should have looked through every page when I changed templates.leprimo wrote:There is missing a var in your cart:![]()

Modules for OpenCart 2.3.0.2
Homepage Module [Free - since OpenCart 0.7.7]
Multistore Extensions
Store Manager Multi-Vendor/Multi-Store management tool
If you're not living on the edge ... you're taking up too much space!
Sorry I had been disturbed during installation instr. and missed saving the changes i had made to menu.tpl in "view".
Thanks
Hi Fido,
I am in a bit of a quandry with regard to installation of Homepage 1.3.4 -
I am at Step 4
Unfortunately when I go to the Catalog in the admnistration - there is no "Homepage Entries" in the drop down list just the usual "Category | Product | Manufacturer.... etc"Step 4: Database Tables
While still logged in to the administration, from the menu select "Catalog–>Homepage Entries". This will automagically insert the following 2 tables into your database:–
homepage
homepage_description
The new tables will be prefixed with your database prefix.
I have already done step 5 activating/install in Extensions - but not sure where to go to complete step 4??
CORRECTION: HAVE HAD TO DISABLE ALL AS ERRORS WERE ENCOUNTERED. (which i suppose was expected).... :-(
Any help more than appreciated.
Cheers
Christine
I have now managed to go through all the steps of the installation for Homepage134. Believe I placed everything where it was supposed to go.
I had one problem where the last instruction
I needed <span> within the <ahref </span> hope that makes sense....."catalog/view/theme/default/template/common/header.tpl"
<a href="<?php echo $featured; ?>"><img src="catalog/view/theme/default/image/icon_featured.png" alt="" /><?php echo $text_featured; ?></a>
That finishes the installation.
I have now gone into the Admin side "Catalogue > Homepage Entries" and created a "test type" entry but it does not seem to appear on the homepage.... I still have the default information I entered when first installing OC.
I have enabled the Homepage | Featured Products | Latest Products however if I install and enable "Special Offers" I get the following error:
(so I have disabled/uninstalled that part of the module.Fatal error: Call to undefined method ModelCatalogProduct::getSpecialOffers() in /home/karoola/public_html/catalog/controller/module/special.php on line 14
Any help with regard to getting the Homepage Entries to show on the main page.
thanks
Attachments
No Homepage Entry shown - ebd_homepage134_moduleE01.JPG (82.85 KiB) Viewed 4161 times
I would assume your "<span></span" would probably wrap the image, eg:cmebd wrote:I had one problem where the last instructionI needed <span> within the <ahref </span> hope that makes sense....."catalog/view/theme/default/template/common/header.tpl"
<a href="<?php echo $featured; ?>"><img src="catalog/view/theme/default/image/icon_featured.png" alt="" /><?php echo $text_featured; ?></a>
That finishes the installation.
<a href="<?php echo $featured; ?>"><span><img src="catalog/view/theme/default/image/icon_featured.png" alt="" /><?php echo $text_featured; ?></span></a>
Either you forgot to "enable" the entry or some files did not upload properly. The "Homepage Package" should replace your existing "catalog/controller/common/home.php" and "catalog/view/theme/default/template/common/home.tpl" files. By the way, since you're not using the "default" template, did you copy the "home.tpl" file into your new template? This would also result in the home page displaying the default information.I have now gone into the Admin side "Catalogue > Homepage Entries" and created a "test type" entry but it does not seem to appear on the homepage.... I still have the default information I entered when first installing OC.
You missed something in the installation instructions. You need to add an extra function to "catalog/model/catalog/product.php". Just copy and paste the code from the installation instructions (below the line after "Step 5").I have enabled the Homepage | Featured Products | Latest Products however if I install and enable "Special Offers" I get the following error:
(so I have disabled/uninstalled that part of the module.Fatal error: Call to undefined method ModelCatalogProduct::getSpecialOffers() in /home/karoola/public_html/catalog/controller/module/special.php on line 14
Any help with regard to getting the Homepage Entries to show on the main page.
thanks
Modules for OpenCart 2.3.0.2
Homepage Module [Free - since OpenCart 0.7.7]
Multistore Extensions
Store Manager Multi-Vendor/Multi-Store management tool
If you're not living on the edge ... you're taking up too much space!
I did a restore immediately prior to installing homepage so will go through again and make sure that I make it step by step...
WRt template - yes I made changes where reference was to template/default in [mystyle] related file. question: Do I need to reflect in both default and my own "view" folder????
Thanks again for your response.
Cheers
Christine
Yes. Your "catalog/view/theme/TEMPLATE_NAME/template/common/home.tpl" file should look something like:cmebd wrote:WRt template - yes I made changes where reference was to template/default in [mystyle] related file. question: Do I need to reflect in both default and my own "view" folder????
Code: Select all
<?php echo $header; ?><?php echo $column_left; ?><?php echo $column_right; ?>
<div id="content">
<div class="top">
<h1><?php echo $heading_title; ?></h1>
</div>
<div class="middle">
<div><?php echo $welcome; ?></div>
<!-- Modules inserted by Fido-X (http://www.fido-x.net) -->
<?php if ($modules) { ?>
<?php foreach ($modules as $module) { ?>
<?php echo ${$module['code']}; ?>
<?php } ?>
<?php } ?>
<!-- End Modules -->
</div>
<div class="bottom"> </div>
</div>
<?php echo $footer; ?>
Modules for OpenCart 2.3.0.2
Homepage Module [Free - since OpenCart 0.7.7]
Multistore Extensions
Store Manager Multi-Vendor/Multi-Store management tool
If you're not living on the edge ... you're taking up too much space!
Users browsing this forum: No registered users and 7 guests