Jump to content
xt:Commerce Community Forum

Subkategorien in der Kategorie Box einr?cken


Recommended Posts

So hier mal die 1001 anfrage wegen der Subkats.

Ich w?de gerne es folgendermassen haben:

>Hauptkat

>>Subkat

etc

Nun habe ich hier schon einige Beitr?ge gelesen wo viele sagen man m?sse nur einf?gen aber egal an welcher stelle ich das mache es wird keinerlei ?nderung sichtbar.

Es mus doch ne m?glichkeit gene durch einr?cken der Subkats etwas mehr ?bersicht in der Box zu bekommen oder?

Link to comment
Share on other sites

Danke f?r die antwort aber leider sieht es bei mir so aus:

function xtc_show_category_content($counter) {

global $foo, $categories_string, $id;

for ($a=0; $a<$foo[$counter]['level']; $a++) {

$categories_string .= "";

}

$categories_string .= '<a href="';

if ($foo[$counter]['parent'] == 0) {

$cPath_new = 'cPath=' . $counter;

} else {

$cPath_new = 'cPath=' . $foo[$counter]['path'];

}

$categories_string .= xtc_href_link(FILENAME_DEFAULT, $cPath_new);

$categories_string .= '">';

Link to comment
Share on other sites

Halte mich f?r Doof aber:

if ($foo[$counter]['level']=='1') {

finde ich nicht bei mir.

Siehe Selbst (kopiere nicht alles wird sonst zu un?bersichtlich:

function xtc_show_category($counter) {

global $foo, $categories_string, $id;

// image for first level

$img_I='icon_arrow.jpg';

for ($a=0; $a<$foo[$counter]['level']; $a++) {

$categories_string .= "";

}

$categories_string .= '<table width="100%" cellspacing="0" cellpadding="0" border="0" class="bg_box_topics">

<tr>

<td valign="middle">';

$categories_string .= ''.$img_I;

$categories_string .= '<a href="';

if ($foo[$counter]['parent'] == 0) {

$cPath_new = 'cPath=' . $counter;

} else {

$cPath_new = 'cPath=' . $foo[$counter]['path'];

}

if (SEARCH_ENGINE_FRIENDLY_URLS == 'true') $cPath_new.='&category='.xtc_cleanName($foo[$counter]['name']);

$categories_string .= xtc_href_link(FILENAME_DEFAULT, $cPath_new);

$categories_string .= '">';

if ( ($id) && (in_array($counter, $id)) ) {

$categories_string .= '';

}

// display category name

$categories_string .= $foo[$counter]['name'];

if ( ($id) && (in_array($counter, $id)) ) {

$categories_string .= '';

}

if (xtc_has_category_subcategories($counter)) {

$categories_string .= '';

}

if ($foo[$counter]['level']=='') {

$categories_string .= '</a>';

} else {

$categories_string .= '</a>';

}

if (SHOW_COUNTS == 'true') {

$products_in_category = xtc_count_products_in_category($counter);

if ($products_in_category > 0) {

$categories_string .= '(' . $products_in_category . ')';

}

}

if ($foo[$counter]['level']=='') {

$categories_string .= 'xtc004_HHGPT.gif';

}

$categories_string .= '</td></tr></table>';

if ($foo[$counter]['next_id']) {

xtc_show_category($foo[$counter]['next_id']);

}

}

?>

Link to comment
Share on other sites

Archived

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

×
  • Create New...