Hallo ihr,
und zwar suche ich schon lange nach einer Lösung wie ich mein Shop-Kategorien(xt-commerce) nicht als Liste untereinander, sondern nebeneinander hinbekomm?
Ich kenn mit php nicht gut aus und kann daher den Quellcode nicht deuten:
Kann mir jemand sagen wo und wie diese Funktion abgerufen wird?
Wäre euch sehr dankbar!
und zwar suche ich schon lange nach einer Lösung wie ich mein Shop-Kategorien(xt-commerce) nicht als Liste untereinander, sondern nebeneinander hinbekomm?
Ich kenn mit php nicht gut aus und kann daher den Quellcode nicht deuten:
Kann mir jemand sagen wo und wie diese Funktion abgerufen wird?
Wäre euch sehr dankbar!
PHP:
function xtc_show_category($counter) {
global $foo, $categories_string, $id;
// image for first level
$img_1='';
for ($a=0; $a<$foo[$counter]['level']; $a++) {
if ($foo[$counter]['level']=='1') {
$categories_string .= "";
}
$categories_string .= " ";
}
if ($foo[$counter]['level']=='') {
if (strlen($categories_string)=='0') {
$categories_string .='<table style="color:#3fc ;background-color:#000000;padding: 15px 25px 15px; font-size:14px; "><tr><td>';
} else {
$categories_string .='</td></tr></table><table style="color:#3fc ;background-color:#000000;padding: 15px 20px 16px; font-size:14px;" ><tr><td>';
}
$categories_string .= $img_1;
$categories_string .= ' <a href="';
} else {
$categories_string .= '<a href="';
}
$cPath_new=xtc_category_link($counter,$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 ($foo[$counter]['level']=='') {
$categories_string .= '</a></b> ';
} 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 . ')';
}
}
$categories_string .= '<br />';
if ($foo[$counter]['next_id']) {
xtc_show_category($foo[$counter]['next_id']);
} else {
$categories_string .= '</td></tr></table>';
}
}
?>