When you visit a web site (blogger platform) on mobile, you noticed the address bar can have the positioning URL ?m=1, your area unit wanting a way the way to delete this? In this blog I will share how to fix this issue ?m=1 on your blogger website..

  1. First you login to your blogger's dashboard.
  2. Click on the Theme option.
  3. Click on Edit HTML.
  4. Click once inside the box you see.
  5. Press Control + F (CTRL + F) from the keyboard. 
  6. And Find </body> tag.
  7. Pressing Enter paste the below code.
  8. Copy the given below code & paste.
  9. Then click on "save".
Code:-
<script type='text/javascript'>
//<![CDATA[
var uri = window.location.toString();
if (uri.indexOf("%3D","%3D") > 0) {
var clean_uri = uri.substring(0, uri.indexOf("%3D"));
window.history.replaceState({}, document.title, clean_uri);
}
var uri = window.location.toString();
if (uri.indexOf("%3D%3D","%3D%3D") > 0) {
var clean_uri = uri.substring(0, uri.indexOf("%3D%3D"));
window.history.replaceState({}, document.title, clean_uri);
}
var uri = window.location.toString();
if (uri.indexOf("&m=1","&m=1") > 0) {
var clean_uri = uri.substring(0, uri.indexOf("&m=1"));
window.history.replaceState({}, document.title, clean_uri);
}
var uri = window.location.toString();
if (uri.indexOf("?m=1","?m=1") > 0) {
var clean_uri = uri.substring(0, uri.indexOf("?m=1"));
window.history.replaceState({}, document.title, clean_uri);
}
//]]>
</script>

Step-1

Step-2


I hope this blog help you out.
Share this blog, because sharing is caring.

Thank you.