Currently I have a categroy description that is displayed on the search page;
I did this by adding the following code to the file search.php
<div class="category-description"> <?php $cat = Category::newinstance()->findByPrimaryKey($search_cat_id); echo @$cat['s_description'];?> </div>
Is it also possible to display a general description that dissapears/changes when one selects a category?
The reason behind this is because i want to build up SEO value for the listing overview page where all listings are displayed and no category has been selected yet.
I hope that you understand what i mean.
Kind regards Hugo