skip to Main Content

Magento 2.2.4 generation does not exists

I have installed Magento 2.2.4 with composer. Everything is working but when I am running this command. php bin/magento setup:di:compile It is giving me an error **[RuntimeException] Source class "MagentoPaymentModelMethodVirtual" forMagentoPaymentModelMethodVirtualLogger" generation does not exist.** I have cleared all cache…

VIEW QUESTION

How to override MagentoCatalogModelLayerFilterList in magento 2.2.3

Override the MagentoCatalogModelLayerFilterList in Magento 2.2.3 using plugin. This error came PHP message: PHP Fatal error: Uncaught TypeError: Argument 2 passed to ####PluginModelLayerFilterList::aroundGetFilters() must implement interface MagentoCatalogModelLayerFilterableAttributeListInterface, instance of Closure given, called in /magento/framework/Interception/Interceptor.php on line 135 and defined in…

VIEW QUESTION

Magento 2 – getCollection returns only simple products

I'm trying to get all the products. I'm doing this way: $objectManager->get('MagentoCatalogModelProduct') ->getCollection() ->addAttributeToSelect('*'); But only simple products are returned. Getting the NOT RETURNED products by sku works fine: $p = $objectManager->create('MagentoCatalogModelProductRepository')->get($sku); Any idea? Thanks in advance. -- Magento version…

VIEW QUESTION
Back To Top
Search