This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Unterkategorie eingerückt darstellen


avatar
Walter 2
From: -
Unterkategorie eingerückt darstellen

Guten Tag,

ist es möglich, zb. in der Wissensdatenbank, die Unterkategorie im Block eingerückt darzustellen.

Derzeit sieht es zb. so aus:

|Wissensdatenbank-Block
|Kategorie 1
|Kategorie 1.1
|Kategorie 1.2
|Kategorie 2
usw.

ich würde es gerne so haben:

|Wissensdatenbank-Block
|Kategorie 1
| Kategorie 1.1
| Kategorie 1.2
|Kategorie 2
usw.

(also Kategorie 1.1 um ein zeichen eingerückt, gegenüber der übergeordneten Kategorie 1)

Ist das möglich? Ich hab leider keine Einstellung dazu gefunden.

Danke und mfg
Walter Hofbauer

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Unterkategorie eingerückt darstellen
avatar
OP 2
From: -
Vielen Dank, funktioniert prima Smiling Face

lg
Walter
1 Re: Unterkategorie eingerückt darstellen
avatar
Editor
0
From: -
Das kann mit einer kleinen Modification geändert werden. Die Datei /blocks/knowledgebase_categories.php muss in einen Editor geöffnet werden und:

              if( $contentcat_parentid > 1 )

{
$knowledgebasecat_name = str_repeat( "-", $contentcat_parentid ) . " " . $contentcat_name;
}


durch:

              if( $knowledgebasecat_parentid > 1 )

{
$knowledgebasecat_title = str_repeat( " ", $knowledgebasecat_parentid ) . " " .$knowledgebasecat_title;
}


ersetzt werden.

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.