0

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.

mjdevloper
  • 1,553
  • 8
  • 33
  • 69

1 Answers1

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