.
Thanks for adding this issue to the tracker:
code.google.com/p/flexicontent/issues/detail?id=72
After thinking about this a bit, I can see the need to un-check this by default.
The performance hit could be an issue with a lot of nested categories.
I looked a little closer and found a switch.
\administrator\components\com_flexicontent\models\items.php
Line 368:
$filter_subcats = JRequest::getInt('filter_subcats', 0, 'post');
Change that "0" to a "1" and the category filter in the Items listing page defaults to Yes.
Like this:
$filter_subcats = JRequest::getInt('filter_subcats', 1, 'post');
It does not show anything in the checkbox, but the results do show the sub-categories.
But beware, it
always shows the sub-categories.
There is no checkbox switch now.
I have no idea what else this may affect.
That variable ($filter_subcats) is used in another file:
\administrator\components\com_flexicontent\views\items\view.html.php
On lines 57 and 295.
Give that a try and see if anything else breaks.
.