Jump to content
xt:Commerce Community Forum

Kategorie als Startseite


Recommended Posts

Hi, ich habe folgendes Problem, welches ich allerdings schon einmal gelösst hatte.

Und zwar möchte ich meine einzige Hauptkategorie direkt als Startseite nutzen und diese soll auch gleich ausgeklappt sein. Ich weiß nicht mehr wie und wo ich das damals gemacht habe aber nach meinem Shopupdate gings nicht mehr.

Hat jemand eine Idee? Vielen Dank!

Shop: XTC 3.0.4. SP2.1

Link to comment
Share on other sites

Alles Klar, habs doch selbst hinbekommen. ;) Wer wissen will wie es ganz einfach funktioniert:

includes/application_top.php suchen und öffnen:

Zeile: 450

// 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 = '';
}[/PHP]

Und nun einfach bei $cPath='' die gewünschte dauerhafte Categorie eintragen:

[PHP]// 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 = '';
}[/PHP]

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. ;)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...