Alles Klar, habs doch selbst hinbekommen.

Wer wissen will wie es ganz einfach funktioniert:
includes/application_top.php suchen und öffnen:
Zeile: 450
PHP-Code:
// calculate category path
if (isset ($_GET['cPath'])) {
$cPath = xtc_input_validation($_GET['cPath'], 'cPath', '');
}
elseif (is_object($product) && !isset ($_GET['manufacturers_id'])) {
if ($product->isProduct()) {
$cPath = xtc_get_product_path($actual_products_id);
} else {
$cPath = '';
}
} else {
$cPath = '';
}
Und nun einfach bei $cPath='' die gewünschte dauerhafte Categorie eintragen:
PHP-Code:
// calculate category path
if (isset ($_GET['cPath'])) {
$cPath = xtc_input_validation($_GET['cPath'], 'cPath', '');
}
elseif (is_object($product) && !isset ($_GET['manufacturers_id'])) {
if ($product->isProduct()) {
$cPath = xtc_get_product_path($actual_products_id);
} else {
$cPath = '3';
}
} else {
$cPath = '';
}
Und nun wird in meinem Fall immer Kategorie 3 ausgeklappt als Startseite geöffnet

und es wird auch immer darauf zurückgewiesen, wenn es zur Startseite gehen soll.