Jump to content

Featured Products on more than one page


Recommended Posts

What you need to do is to modify the "homefeatured" module to include a method to handle the hook you want to use.

 

For example, if you wanted to display the featured products via "{$HOOK_TOP}", you would add this method to "modules/homefeatured.php":

 

function hookTop($params)
{
   return $this->hookHome($params);
}

 

This assumes you also add the module to the hook you want in the backoffice.

 

Cheers

Link to comment
Share on other sites

Ahh, did not understand the question.

 

Basically you want the homepage to display "category.tpl" (i.e. the top level category). I do not have time to look right this second but that is what you what you need to do. It may be easiest just to do a redirect from the home page to a specific category.

Link to comment
Share on other sites

×
×
  • Create New...