How to Redirect Mobile Version to Non-Mobile in Blogger

Posted by Lasantha Bandara on September 16th, 2015 File Under : browser, change template, java script1 Comment

When someone viewing your blog using a mobile phone, he will be automatically redirected to the mobile version of your blog. If you see the web browser's address, you can see the "?m=1" part in your blog address.

http://YOURBLGNAME.blogspot.com/?m=1

In mobile version, blogger will be applied one of their basic mobile themes to your site. These themes are not looking nice. But if your custom blogger theme is mobile friendly, you do not want to use these blogger's basic mobile themes.

In this tutorial, I am going to explain how to display non-mobile (desktop) version, when someone browse your blog using a mobile phone. It will be useful if you are using a responsive blogger template.

Go to "Edit HTML" of your blog.

Add below code just after <head> tag of your blog:

<script type='text/javascript'>//<![CDATA[
var curl = window.location.href;if (curl.indexOf('m=1') != -1) {curl = curl.replace('m=1', 'm=0');window.location.href = curl;}
//]]></script>

After adding above code it will be look like this:

How to Redirect Mobile Version to Non-Mobile in Blogger

Save your template.

Now when someone visit to your blog using a mobile phone, "?m=0" will be added to the blog address instead of "?m=1".

http://YOURBLGNAME.blogspot.com/?m=0

File Under : browser, change template, java script

One Response to “How to Redirect Mobile Version to Non-Mobile in Blogger”

  1. IgalaVibes says:

    Thanks it worked for me.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.