Page 1 of 1

Redirect to a specific category on the homepage

Posted: Fri Apr 20, 2012 12:18 am
by JonathanR
Hi all,

I want to show all of my products on the homepage when a visitor first enters the site. I have seen one or two modules, and have tried them without much success. One seems quite promising but it requires amending the database which I am not keen to do.

So I was wondering, if I add an extra Category across the top of my site called ENTIRE RANGE, which will contain every product, can I then set up a redirect from index.php to index.php?route=product/category&path=2

I have done redirects before with domain changes, but never something like this, and my attempts have failed.

Thanks in advance.

Jonthan

Re: Redirect to a specific category on the homepage

Posted: Fri Apr 20, 2012 1:00 am
by qahar
You can put something like this on your home.tpl

<?php $this->redirect($this->url->link('product/category', 'path=2')); ?>

Re: Redirect to a specific category on the homepage

Posted: Fri Apr 20, 2012 2:04 am
by JonathanR
So simple! Thanks for that qahar. Works like a dream.