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 […]
Magento
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 […]
I am new to Magento and I am stuck with adding a column to a grid. I have created a new module (StoreAdmin) to assign every admin to specific store (for some reasons I have been asked to do so). I have added a new column (store_id) to the table […]
I tried manually installing magento 2 using the command: php bin/magento setup:install --base-url=http://localhost/m2/ --db-host=localhost --db-name=m2 --db-user=root --db-password=root --admin-firstname=Vladimir --admin-lastname=Despotovic --admin-email=your_email@example.com --admin-user=admin --admin-password=admin123 --language=en_US --currency=USD --timezone=America/New_York --use-rewrites=1 I also tried using the warden installation, in details and I tried several bugfixes myself with it – once it didn’t run correctly (the […]
I am using following command to install magento 2.4.7 in xampp on windows platform, composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition=2.4.7 magento2 I am getting following error, Note : I know my private key and public key, when i enter the command it’s never asking the details
I’m not able to export products. I go there: System > Export > Products I select CSV. But below, I have no entity attributes I can select, so I can export anything. I’m using M 2.4.7 p3, but had the same problem on M 2.4.1 If anyone has a clue […]
I have Magento 2.4.6-p8 in use with Varnish. Site does not use Magento’s shop functionality and it servers only in catalog mode and only displays products for customers to see. All CMS pages load almost instantly thanks to Varnish. Also category pages load instantly. For some reason product pages load […]
I have my custom module Pricebycustomergroup i have created a rule where a specific product price will be decreased like orignal is 34$ and the new one will be 20$ but this will works if max quantity is 2 in cart.. I wanted to create graphql APIs for this now […]