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 412dc0e commit ac14a2dCopy full SHA for ac14a2d
app/code/Magento/Wishlist/Model/ResourceModel/Item/Collection/Grid.php
@@ -95,11 +95,14 @@ public function __construct(
95
protected function _initSelect()
96
{
97
parent::_initSelect();
98
- $this->setVisibilityFilter();
99
- $this->setInStockFilter();
100
$this->addCustomerIdFilter(
101
$this->_registryManager->registry(RegistryConstants::CURRENT_CUSTOMER_ID)
102
- )->resetSortOrder()->addDaysInWishlist()->addStoreData();
+ )
+ ->resetSortOrder()
+ ->addDaysInWishlist()
103
+ ->addStoreData()
104
+ ->setVisibilityFilter()
105
+ ->setInStockFilter();
106
return $this;
107
}
108
0 commit comments