fahad ashraf Well-known member May 21, 2021 #1 i am using xenforo's AbstractCategoryTree there is a function to get all child is there any way to get parent of a child ??
i am using xenforo's AbstractCategoryTree there is a function to get all child is there any way to get parent of a child ??
L Lawrence Well-known member May 21, 2021 #2 fahad ashraf said: i am using xenforo's AbstractCategoryTree there is a function to get all child is there any way to get parent of a child ?? Click to expand... For the front end I used (I believe this, or similar, as it is off the top of my head): array_keys($node->breadcrumbs); I believe the node finder has a isDecendantOf, which returns the immediate parent (again, off the top of my head, as I need to leave in a minute). Last edited: May 21, 2021
fahad ashraf said: i am using xenforo's AbstractCategoryTree there is a function to get all child is there any way to get parent of a child ?? Click to expand... For the front end I used (I believe this, or similar, as it is off the top of my head): array_keys($node->breadcrumbs); I believe the node finder has a isDecendantOf, which returns the immediate parent (again, off the top of my head, as I need to leave in a minute).