You are here:  » how to show all category or some category on the front page

Support Forum



how to show all category or some category on the front page

Submitted by azlanirda on Wed, 2007-10-31 03:53 in

hi

i have search the forum but cannot find a way to display categories (some or all) on the frontpage.

any help would be appreciated.

thank you.

Submitted by support on Wed, 2007-10-31 09:24

Hi,

Firstly, it is not recommended to create a dynamic (database driven) category list on the index page as this could cause database loading problems if your home page is requested too frequently. However, you can easily add a "Popular Categories" simply by hard-coding links directly to the categories that you want to feature. From the index page, category links are simply:

search.php?q=category:Category Name:

...so the HTML you need to add would be (for example):

<p>
<h4>Popular Categories</h4>
<a href='search.php?q=category:Motoring:'>Motoring</a><br />
<a href='search.php?q=category:Home+and+Garden:'>Home and Garden</a><br />
</p>

(remember to use the + sign in the URL in place of a space)

Hope this helps!
Cheers,
David.