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 →
Uncaught TypeError: $ is not a function – Magento 2
May 13, 2022
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 →
Find exception or error logs in Magento 2 ?
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 →