I want to add some modification to this OTree functionality.
With your advise I maanged to make OTree start showing form the category I like
<?php echo $this->shopCategoryType->displayTree('hikam_categories', 2 , null, true, true); ?>
in this case this is Product Category but not root nor vendor nor other categories that are of no interest to my frontend users.
Now I need to add a second category to that is in the same level as product category, I mean that is also a son of Root.
I would like to do something like this:
<?php echo $this->shopCategoryType->displayTree('hikam_categories', array(2, 157) , null, true, true); ?>
Of course this might look ridiculous, but I don't know where to start from...