We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb93b40 commit 08e5ab3Copy full SHA for 08e5ab3
app/code/Magento/PageBuilder/Model/Catalog/ProductTotals.php
@@ -128,8 +128,8 @@ private function updateAnchorCategoryConditions(array $condition): array
128
return $condition;
129
}
130
131
- if ($category->getIsAnchor() && $category->getChildren()) {
132
- $children = explode(',', $category->getChildren());
+ if ($category->getIsAnchor() && $category->getChildren(true)) {
+ $children = explode(',', $category->getChildren(true));
133
134
$condition['operator'] = "()";
135
$condition['value'] = array_merge([$categoryId], $children);
0 commit comments