cancel
Showing results for 
Search instead for 
Did you mean: 

How to resolve all these errors for zip/pin code, and some other.

How to resolve all these errors for zip/pin code, and some other.

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.

 

Error.jpg

 

How to resolve it?

 

Thanks!

Siddhant Jain

 

7 REPLIES 7

Re: How to resolve all these errors for zip/pin code, and some other.

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?

Re: How to resolve all these errors for zip/pin code, and some other.

@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.

Re: How to resolve all these errors for zip/pin code, and some other.

Nope

Re: How to resolve all these errors for zip/pin code, and some other.

No sir. 

Re: How to resolve all these errors for zip/pin code, and some other.

Is any module conflicting or it is a default Magento?

Re: How to resolve all these errors for zip/pin code, and some other.

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();

Re: How to resolve all these errors for zip/pin code, and some other.