WPDude not only impressed me with his considerable technical prowess, but also with his integrity and commitment. He really is a pleasure to work with.
Continue Reading »WPDude not only impressed me with his considerable technical prowess, but also with his integrity and commitment. He really is a pleasure to work with.
Continue Reading »Thank you for making this such an easy experience to move to WordPress from TypePad. I found it much easier for you to get me going for a small fee than spend hours trying to go through the WordPress codex.
Continue Reading »A couple of weeks ago, I was at my wits end. My blog posts were not showing up in Firefox and I needed help, more than you can imagine. None of the tech people that I know good provide me real assistance so, I used my good friend Google. I found WordPress Dude, Neil Matthews. [...]
Continue Reading »Neil, I just wanted to say thanks for going above and beyond my expectations with our wordpress consultation the other day. You not only fixed my screw ups, but you also showed me where I was going wrong and how to properly operate the new blog template on a day-to day basis, as well as [...]
Continue Reading »I must say that Neil AKA WP Dude is customer service oriented and commited to building a strong and honorable relationship with his clients. I’m far from tech savy and was in need of assistance with updating my version of word press. WP Dude went above and beyond the necessary, by updating all of my [...]
Continue Reading »After spending 3 months setting up my new site I was stuck on the last details to get the site up and running. I was thrilled to find Neil Matthews who took care of the technical stuff to make my site work better so I did not have to spend another 3 months learning things [...]
Continue Reading »
The dreaded 404 error is the scourge of most websites, in this blog posts I want to tell you how to re-purpose the 404 error and use it to your advantage.
404 is the error returned by web servers to browsers if a file cannot be found. This is a standard error and is usually a dead-end on a website.
You site will return a 404 for one of the following reasons:
Most WordPress themes have a page called 404.php, this is designed to handle any file not found errors and display a dull yet nicely themed message saying you went to the wrong page. What I want to suggest is that you take this page, and transform it into a springboard to other live pages on your site.
Editing 404.php required some coding skill, if you feel up to it, put on your code monkey hat, order a dozen pizzas, loose your social skills and follow me.
Why not add a search box to your 404 page this gives people the chance to search your posts for the title they want. Here is the code to add a basic search box to your 404.php file.
<form id="searchform" method="get" action="/index.php">
<div>
<input type="text" name="s" id="s" size="15" /><br />
<input type="submit" value="Search" />
</div>
</form>
Another good way to springboard people to the content they want, or to bring your attention to the problem is to add a contact form. I use the plugin contact form 7, which does not support forms in themes, so I provide an email address to contact me on.
Why not give them something excellent ot read anyway, give them a list of your pillar content or your most popular posts. In my case I am using the popularity contest post plugins to display my most popular posts judged by the number of times a post has been read. To do this I add the following php command to my 404.php file:
akpc_most_popular()
I have implemented these on my own 404.php file you can see this in action by visiting wpdude.com/zzzzzz
A 404 is usually a dead-end, the wrong page to be on. Why not repurpose this into a useful experience for your site visitor. Push them to your key content or give them a call to action so they can find what they want, small actions like this turn casual visitors into subscribers.
If you need help implementing a useful 404 page, please contact me via my service page.
Do you think it a good idea to re-direct 404 error page to the homepage instead?
[Reply]
Neil Matthews Reply:
June 8th, 2010 at 12:54 pm
You could do that, but you would miss problems on your site if the 404s are not recordded, and it may cause confusion if someone tries a type-in address and misspells,
It would not cause any issues redirecting to the homepage though.
[Reply]