I did a database dump from production using this command magerun2 db:dump --strip="@development" var/dec18.sql Did an import on my DEV environment. Changed the web/unsecure/base_url and web/secure/base_url . I only have one website and 2 stores. NO fancy things here. I ran the setup:upgrade , setup:di:compile and rm -rf pub/static/frontend/ && […]
Magento
I am trying to upload images to Magento using the API. We have 5 images, one of which is a thumbnail, one is the base image, and one is a regular image. The problem is that when I upload the images, the order is not correct—the thumbnail image is not […]
I have installed the Mageplaza_SocialLogin module in Magento 2.4.6 for Google social login and configured it as well. However, when I try to use it on the frontend, it gives me a 403 Forbidden error. To check, I added a die() in the files, and when the callback URL is […]
I recently upgraded Magento from version 2.4.6 to 2.4.7-p3. After the upgrade, I noticed that the ‘Special Price From’ and ‘Special Price To’ calender have been moved to the bottom of the product page. I’ve already tried removing all custom modules, but the issue persists on my existing website. To […]
I am searching for a solution to fetch stock statuses for a list of products in a single request. Right now I am using API /rest/V1/stockStatuses/{sku}, but that would need a list of requests. Is there a better solution?
How to resolve the issue in Magento 2.4.7-p3 version admin grid is not able to open. While you are in developer mode and go to store -> configuration-> and open any left tab and now open child right side tab it is not opend and returns error like Uncaught TypeError: […]
I am working on a custom module for Magento 2.4.5 that extends the Sales Rule Conditions functionality. My goal is to: Add a new condition to the “Conditions” tab in the Cart Price Rule section. When the new condition is selected, it should display a Customer Grid (not a dropdown/select […]
I’m looking for a way to cancel multiple orders at once via Magento 2 REST API. The standard approach I know is: POST /V1/orders/{order_id}/cancel However, this endpoint processes orders one at a time, which makes it very slow for bulk operations when I have a large number of orders to […]
I need to override below file in my custom module Ayakil_CatalogPermissionsExtended vendor/magento/module-catalog-permissions/view/adminhtml/web/category_edit.js The custom module was created and placed the category_edit.js(/app/code/Ayakil/CatalogPermissionsExtended/view/adminhtml/web/js/category_edit.js) Content of requirejs-config.js is below var config = { config: { mixins: { 'Magento_CatalogPermissions/js/category_edit': { 'Ayakil_CatalogPermissionsExtended/js/category_edit': true } } } }; but unfortunately after static content deploy, in the […]