Uncaught TypeError: Argument 1 passed to Magento\Catalog\Model\ResourceModel\Product\Collection::addIsSaleableAttributeToFilter()
Does anyone have an idea about it ??
Uncaught TypeError: Argument 1 passed to Magento\Catalog\Model\ResourceModel\Product\Collection::addIsSaleableAttributeToFilter()
Does anyone have an idea about it ??
Your theme is probably using somewhere 'addAttributeToFilter'
Something like this:
$collection->addAttributeToFilter('is_saleable', 1, 'left')
Change it to something like:
$collection->addAttributeToFilter('is_saleable', [1], 'left')
Best run search thru your modules and theme files with this addAttributeToFilter
Reference with simillar issue:
2.2.3or2.3.3? Specify right version. – Amit Bera Jan 29 '20 at 08:06