Delete unused images from my media folder ?
May 13, 2022
Use the Hackathon EAV cleaner module for this. After installation you can use the command eav:media:remove-unused Also you can do it by installing the module… Read More →
May 13, 2022
Use the Hackathon EAV cleaner module for this. After installation you can use the command eav:media:remove-unused Also you can do it by installing the module… Read More →
May 13, 2022
To Turn Magento 2 Maintenance Mode ON bin/magento maintenance:enable To Turn Magento 2 Maintenance Mode OFF bin/magento maintenance:disable If you need to whitelist your IPs… Read More →
Understanding how to retrieve various URLs dynamically is essential for developers working with Magento 2. This capability allows for flexible coding that adapts to different… Read More →
Cleaning a cache type deletes all items from enabled Magento cache types only. php bin/magento cache:clean Flushing a cache type purges the cache storage php… Read More →
Use the following command to perform Magento admin password reset php bin/magento admin:user:create –admin-user=”admin” –admin-password=”123123q” –admin-email=”admin@example.com” –admin-firstname=”Admin” –admin-lastname=”Admin” After creating new admin, you can login… Read More →
Use Jquery code the following way in Magento 2 <script> require([ ‘jquery’ ], function ($) { $(function () { // Write code here }); });… Read More →
Carousels slider breaks when js merge in Magento 2 You should move slider script to the head tag of the page. To debug Disable JS… Read More →
Follow the steps to fix “invalid Domain for site key” issue in Magento 2 1. Go to recaptcha admin (https://www.google.com/recaptcha/admin) 2. Choose reCAPTCHA Type (reCAPTCHA… Read More →
Enable template-hints with command in Magento 2 php bin/magento dev:template-hints:enable php bin/magento dev:template-hints:disable Remove Cache chmod -R 777 var/ pub/ generated/ php bin/magento cache:clean php… Read More →
May 13, 2022
Error logs in Magento 2 Set the developer mode php bin/magento deploy:mode:set developer //You can check the errors for var/log and var/reports folder //You can… Read More →