Comment 'still open...Does an...' to 'Channel - Parent & Child'
  • still open...

    Does anyone use module with parent & child? Any information is very much appreciated!

    And Yes --> https://unacms.com/wiki/hashtags-labels-channels is missing an anwser too

    • Hello @Corey Dozier !

      If you will use this BxSpacesSearchResult.php (UNA 14.0 - RC5) file instead of default one, then you will have the possibility to filter parent spaces only with the next code of your custom service block:

      array (
       'module' => 'bx_spaces',
       'method' => 'browse',
       'params' => 
       array (
        0 => 
        array (
         'mode' => 'parent',
        ),
       ),
      )
      
      • How we separated parent from child was using Category. We put all the Parent spaces into one category class and then assigned the Childs to a different category which was descriptive of their space. Levels was another method we tested with fair results. Using the category method as an example, we created a space called Entertainment and assigned the category Interests. Entertainment is a parent space. All parent spaces are in the Interests category. Then we created Childs under Entertainment. For example, we created the child Music and put it under entertainment. When I go to Entertainment, I see on the screen all its child spaces. That is all how we did it by not solely relying on search.

        • Thanks @Brand Harbor ! It isn't super ideal but probably the best workaround.

          I am not able to locate the Parent and Child space page blocks for some reason. It is like they are not available on my site for some reason...will keep searching and then see if this may be the right navigation model for me, too.