cancel
Showing results for 
Search instead for 
Did you mean: 

How to remove exception error log messages from browser?

Re: How to remove exception error log messages from browser?

Thanks @Mukesh Tiwari 


I don’t think any plug-in were recently installed. But how do I increase the sql timeout?

Re: How to remove exception error log messages from browser?

You can use setTimeOut jQuery function to hide the message after it appears to users.
Eg:

jQuery(document).ready(function(){
    jQuery('.btn-cart, #zip-check').click(function(){
        setTimeout(function() {
            jQuery("#cod_msg").update('')
        }, 5000);
    });
});

Here 5000 is the time in milliseconds, it defines 5 seconds, you can set it as per your requirements.

LitExtension - #1 Shopping Cart Migration Expert

LitExtension helps store owners and agencies migrate all important data from one eCommerce platform to another accurately, securely and at the highest speed.

Visit website: http://litextension.com/

Re: How to remove exception error log messages from browser?

We Rise GOC is a rising name in the Real Estate Market. Members of We Rise GOC’s aim to be a recognized leader for innovation and excellence in the Real Estate industry. The company has one of the most engaged workforce because we always put our people first. We offer exciting opportunities to benefit from, for both our clients and work force.

Re: How to remove exception error log messages from browser?

Re: How to remove exception error log messages from browser?

You have to checkout all module or theme level layout files to check any css are assigned with href = "csspath".

 

You need to replace href = "csspath" with src="csspath" tag to sort out this issues.

 

Replace - 

<link href="link to css" rel="stylesheet" type="text/css"/>

To -

<link src="link to css" rel="stylesheet" type="text/css"/>

 

for more information please visit following....

https://magento.stackexchange.com/questions/200659/after-update-to-2-2-1-href-is-not-allowed
Thanks.

Re: How to remove exception error log messages from browser?

Hello @kanchi777k3aa3 
You have created a layout file, in which you are making some mistakes regarding head section.
Thats why it is showing you error. You need to make correction in your layout file. Use like this:

 

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <head>
        <css src="css/custom.css" rel="stylesheet" type="text/css"  />
<link src="[Vendor]_[Module]::js/js_fileName.js"/> </head> </page>

Re: How to remove exception error log messages from browser?

<a href="https://rabs-rcm.com/">Rabs RCM</a>

Re: How to remove exception error log messages from browser?

Re: How to remove exception error log messages from browser?


@rabscrmgma0ffc wrote:

<a href="https://rabs-rcm.com/">Rabs RCM</a>




Re: How to remove exception error log messages from browser?