XF 2.1 style categories in subforums like on homepage

developr

Active member
Hi there,

I am wondering why categories in level 2 were displayed different then the categories on level 1 homepage.

Level 1 Homepage
Bildschirmfoto 2019-06-16 um 10.22.35.webp

Level 2 Subforum
Bildschirmfoto 2019-06-16 um 10.23.24.webp

I want to style the categories in subforums like on homepage. Is there an option or addon?
 
I made a solution with tms.

Search:
Code:
|(<xf:macro name="depth1" arg-node="!" arg-extras="!" arg-children="!" arg-childExtras="!" arg-depth="1">)(.*)(<xf:macro template="forum_list" name="node_list".*arg-depth=")(\{\{ \$depth \+ 1 \}\})(" \/>)(.*)(<\/xf:macro>).*(<xf:macro name="depth2" arg-node="!" arg-extras="!" arg-children="!" arg-childExtras="!" arg-depth="1">)(.*)(<\/xf:macro>)|Us

Replace:
Code:
$1
$2$3$4$5
$6
$7
$8

$2
$3{{ $depth }}$5
$6
$7
 
Last edited:
Top Bottom