Hey everybody I want to let you know that I have undertaken the grueling task of getting the heck away from WordPress. I was so sick of the problems and updates I had to do all the time. I am now using my ezbloo system and I am integrating all my old posts into the new system. It sucks, but in the end, I will save bundles of time. I needed to keep things simple and that is why I created ezbloo. I'll have more on this later for you guys after I am done with the total integration of my old posts here. So if you are looking for a post and need it faster, shoot me an email and I will make it a priority. [email protected]

Google Webmaster Tools is now Google Search Console, I am going to show you how to deal with this quickly in your website. Many welcome the change and some don't. Like anything else that changes though we need to roll with it. I am going to show you how I am dealing with it on my website and give you a little code to use that will help you deal with it on your website as well. 


How I am dealing with the name change from Google Webmaster Tools to Google Search Console

As far as the books and PDF's that I have written about Google Webmaster Tools I will just have to manually edit them and upload them again. SInce only the name has changed there isn't much more to write about in the books.

Use JavaScript to change all instances of Google Webmaster Tools to Google Search Console

This code can be put in your footer.php or in a sidebar in WordPress. It will look for every instance of Google Webmaster Tools and then automatically change it to Google Search Console formerly know as Google Webmaster Tools. Just copy and paste the code should not take any more than 10 seconds once you're logged in. :-) [code lang="js"]<script> document.body.innerHTML = document.body.innerHTML.replace(/Google Webmaster Tools/g, '<span class="highlightred">Google Search Console <small><em>Formerly Known as Google Webmaster Tools</em></small></span>') </script>