Add-on [Paid] Create Pages for Categories

On Xenforo 1.1.x

With this structure :

upload_2013-8-15_15-57-46.webp

and Home > Options > Node & Forum List -> Create Pages for Categories (checked) you have this result : (after clicking on main category on forum home)

upload_2013-8-15_15-59-46.webp

on Xenforo 1.2.x with the same strucure and options you have :

upload_2013-8-15_16-1-58.webp

I'm want recover the displaying of xenforo 1.1.x
 
So I think you can manual completed with edit template :)
Look at differents template of 1.1.+ and 1.2+ You will get... ;)
 
Solved

Modify : /library/XenForo/ViewPublic/Category/View.php

Change :

PHP:
            $this, $this->_params['nodeList'], 2 // start at level 2, which means only 1 level of recursion

by

PHP:
            $this, $this->_params['nodeList'] // start at level 2, which means only 1 level of recursion
 
Top Bottom