I am struggling with these errors.
I am trying to find zip/pin code, but after clicking on submit, the loader will not process the result.
How to resolve it?
Thanks!
Siddhant Jain
Hi @siddhant _jain ,
It seems there are several JS files that aren't available.
Maybe you can try to regenerate the static assets?
Run this command from the console:
bin/magento setup:static-content:deploy
And then try again?
@siddhant _jain Please run below command in your terminal
php bin/magento setup:static-content:deploy
and also check is any module conflicting the issue. Because 3rd party modules has bootstrap js so sometimes it creates an issue and I ran with the same problem. I disabled the 3rd party module bootstrap js and it is working for me. Still, if you need the module js then you can raise a request with the vendor.
Nope
No sir.
Is any module conflicting or it is a default Magento?
I got this issue when I was using the "modal" function of the Magento-Ui.
It was fixed using a noConflict function from bootstrap.
$.fn.bsModal = $.fn.modal.noConflict();
I posted this solution in this post https://magento.stackexchange.com/questions/228525/magento-2-2-2-bootstrap-min-js7-uncaught-typeerro... too.