You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@lucmichalski Breadcrumb for a category means you have to query the anchestors of the given category
SET @categoryId= 8;
SELECT
parent.id
FROM
categories AS category,
categories AS parent
WHERE
category.lft BETWEEN parent.lft
AND parent.rgt
AND category.id = @categoryId
ORDER BY
parent.lft;
Hi @griffinqiu ,
Hope you are all well !
I am stuck while trying to get the breadcrumb for a category.
Do you have an idea of how I can do that ?
Thanks for any insights or inputs on that
Cheers,
Luc Michalski
The text was updated successfully, but these errors were encountered: