in opencart 1.5.1.3 I want to display all categories with images at the top and category name on botoom.
as soon as any click on the image or name goes to this category page.
I try my best, even I have a featured.tpl file that displays popular products on the home page, I also try to change it, but it does not work.
in featured.tpl I'm trying to change
<?php foreach ($products as $product) { ?> 
to
 <?php foreach ($categories as $category) { ?> 
but this does not work and an error is displayed
 Invalid argument supplied for foreach() 
how can i display this?
thanks
source share