In a non-trivial application, the architecture is as important as the quality of the code itself. We can have well-written pieces of code, but if we don’t have good organization, we’ll have a hard time as the complexity increases. There’s no need to wait until the project is half-way done […]
Daily Archives: March 24, 2020
We’ve found ourselves with more kids at home, and not enough productive and educational activities to do while schools ramp up their online learning capabilities. So we took to our library to see what we could dig up to keep them engaged with learning, and us able to focus on […]
My current store’s staging instance does not have crontab set up as far as I can tell. The cron_schedule table is empty. Is this needed for custom modules/themes/etc to work properly? What is the most basic setup I can do in order to get the above to work if needed? […]
I have created datapatch to delete products with specific value on attribute manufacturer. I want to delete all products whose manufacturer is LG , my datapatch looks like that < ?php declare(strict_types=1); namespace DevAllExtensionSettingConfigSetupPatchData; use MagentoFrameworkExceptionStateException; use MagentoFrameworkSetupPatchDataPatchInterface; use MagentoEavSetupEavSetup; use MagentoEavApiAttributeRepositoryInterface; use MagentoCatalogModelResourceModelProductAttributeCollectionFactory; use MagentoCatalogModelProductRepository; use MagentoFrameworkApiSearchCriteriaBuilder; class RemoveLGManufacturer […]