Only two products are displaying as recommended product in magento product admin grid whereas we have assign 10 product with a product as recommended product.
Asked
Active
Viewed 105 times
1 Answers
0
It is the default issue of magento, can be resolved by changing the following file with mentioned changes.
Magento\Catalog\Model\ProductLink\CollectionProvider on method getCollection
foreach ($output as $item) {
$itemPosition = (int)$item['position'];
while(true) {
if (!isset($sorterItems[$itemPosition])) {
break;
}
$itemPosition += 1;
}
$sorterItems[$itemPosition] = $item;
}

mjdevloper
- 1,553
- 8
- 33
- 69