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 72643bf commit 259a921Copy full SHA for 259a921
app/code/Magento/Wishlist/Model/ResourceModel/Item/Collection.php
@@ -284,10 +284,15 @@ protected function _assignProducts()
284
$productCollection->setVisibility($this->_productVisibility->getVisibleInSiteIds());
285
}
286
287
+ $attributesToSelect = [
288
+ 'name',
289
+ 'visibility',
290
+ 'links_title',
291
+ ];
292
$productCollection->addPriceData()
293
->addTaxPercents()
294
->addIdFilter($this->_productIds)
- ->addAttributeToSelect(['name', 'visibility'])
295
+ ->addAttributeToSelect($attributesToSelect)
296
->addOptionsToResult()
297
->addUrlRewrite();
298
0 commit comments