also had no time to add another variable and play with the database etc.
Here is the quick fix so you can have a better title for the category pages instead of the category name
open controller/common/header.php
find
Code: Select all
$this->data['categories'][] = array(
'name' => $category['name'],
Code: Select all
$title_array = explode(' ', $category['name']);
$first_word = $title_array[0];
$this->data['categories'][] = array(
'name' => $first_word,
so you can have a really long description in the category title which will be displayed in the browser for that category helping the SEO,
but will only display the first word of the title in your menu as to not mess it up
hope someone else finds this interesting