Tutorials

IE compatibility view – How to force IE8 to use IE7 rendering mode

I’ve had a problem with one of my sites, in which IE8 had a javascript error and I needed to use IE7 rendering mode, which was ok.

I this case I found two solutions:

1. Meta tag solution :

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">

2. htaccess file solution

Header set X-UA-Compatible IE=EmulateIE7

In my case the .htaccess file version worked just fine

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Disable notifications in Magento

Browsing the internet I found a very useful tutorial about disabling notifications in Magento.

A short tutorial on how to block the “New Magento Version” notifications in the Magento admin without modifying the core packages.

Create a new package under app/code/local , for this example lets make a “MyCompany” package. If you already have an existing package for your magento mods you can use that one but you will have to change all references to MyCompany in the following code.

You can read the whole tutorial here

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...