When trying to create an order from the admin panel, I get a page without menus/headers: I tried: php bin/magento cache:clean php bin/magento cache:flush php bin/magento setup:di:compile php bin/magento indexer:reindex php bin/magento setup:static-content:deploy -f that didn’t change anything, I also checked the logs, but didn’t find anything… Any help is […]
Magento
I am facing the following issue on elastic search. TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block I tried “cluster.routing.allocation.disk.threshold_enabled” : false & “index.blocks.read_only_allow_delete”: null but still I get the same issue How to check free space available and the path of the elastic search storage? I tried df […]
I have a slider module which use EntityManager. I want to refactor code to use ResourceModel, but i have problem with many to many relations. With EntityManager i used EntityManagerOperationExtensionPool with Read/SaveHandlers. How to implement same functionality with ResourceModel?
I have a Magento 2.4.2 with 3 websites, 1 B2C and 2 B2B shops. I have setup the global customer setup to Share Customer Accounts -> Per Website But when I want to add an customer address the inputs is displaying Storeviews Where does this come from ?
I have to add three validation rule and as you see below code works well for one rule : validation-mixin.js define([ 'jquery' ], function ($) { "use strict"; console.log('this is own'); return function (validator) { $.validator.addMethod( 'myvalidation', function (value) { // Some custom validation stuff here return false; }, $.mage.__('myvalidation') […]
When I disable MSI on Magento 2.4.5 I receive the following error when trying to open any product Cardinality violation: 1242 Subquery returns more than 1 row, query was: SELECT 1 AS `status`, `e`.`entity_id`, `e`.`attribute_set_id`, `e`.`type_id`, `e`.`created_at`, `e`.`updated_at`, `e`.`sku`, `e`.`name`, `e`.`short_description`, `e`.`price`, `e`.`special_price`, `e`.`special_from_date`, `e`.`special_to_date`, `e`.`image`, `e`.`small_image`, `e`.`thumbnail`, `e`.`news_from_date`, `e`.`news_to_date`, […]
I have not enabled the Use Flat Catalog Category and Use Flat Catalog Product in the admin panel. But when I checked the Database Magento created the flat tables. Can you please give me a brief on the below things (if possible examples)? What is a Flat Catalog? When it […]
I am trying to override the vendor/magento/module-inventory-in-store-pickup/Model/GetPickupLocations.php file I have copied it to app/design/frontend/Magento/child_theme/Magento_InventoryInStorePickup/Model/GetPickupLocations.php but it doesn’t seem to work, have I copied it to the correct location?
I’ve created a module to add a custom image upload field to a CMS page. The image displays in the admin and I can save the image but not able to delete it. I remove the image by clicking the bin/trash icon and save the CMS page but the image […]