404 - 1stWebDesigner https://1stwebdesigner.com/tag/404/ Helping You Build a Better Web Mon, 01 Oct 2018 08:48:37 +0000 en-US hourly 1 https://1stwebdesigner.com/wp-content/uploads/2020/01/1stwebdesigner-logo-2020-125x125.png 404 - 1stWebDesigner https://1stwebdesigner.com/tag/404/ 32 32 Creative Examples of 404 Web Page Designs https://1stwebdesigner.com/creative-404-web-pages/ Sun, 30 Sep 2018 09:00:36 +0000 https://1stwebdesigner.flywheelsites.com/?p=134847 Despite search engines getting better at indexing websites, and sites paying extra attention to broken links through dedicated plugins and services, 404 pages are still an integral part of the modern web.

As hard as companies and sites try to …

]]>
Despite search engines getting better at indexing websites, and sites paying extra attention to broken links through dedicated plugins and services, 404 pages are still an integral part of the modern web.

As hard as companies and sites try to avoid issuing broken links and sending visitors to redundant pages, there will always be a certain few that slip through. As such, it’s important to have a 404-page design to both redirect the user to a different page and to make light of the error through humor or playful, creative design.

In this article, we are going to compile a selection of some of the most creative 404 web page designs for your inspiration.

Your Web Designer Toolbox
Unlimited Downloads: 500,000+ Web Templates, Icon Sets, Themes & Design Assets


Android

404 web page design Android

One of the more extravagant 404-page designs, the Android team has devised a game to include on the page. It’s beautifully put together and offers a fun and creative take on what is possible.

Ueno

404 web page design Ueno

Using a beautiful motion graphic background, Ueno’s 404 page is simple but extremely fun and comical. Every aspect remains on-brand, from the graphics to the typography.

One Shared House

404 web page design One Shared House

Using a hand-drawn style grid upon a two-tone background, this example offers two options for users landing on the page. They can navigate to the homepage or head to the survey page.

Rezo Zero

404 web page design Rezo Zero

Rezo Zero’s design uses a clever film reference to Pulp Fiction, with a comical and confused-looking John Travolta GIF.

New Yorker

404 web page design New Yorker

The New Yorker has included a custom illustration on their 404-page design. It shows a mouse lost in a maze, poking fun at the error while still offering the usual navigation areas and product upsells.

Cooklet

404 web page design Cooklet

What better graphic to include for a cookery site, than an empty plate? It’s a simple but very clever example of what can be achieved on even the most basic of 404-page designs.

Dropbox

404 web page design Dropbox

Utilizing illustration graphics from their rebrand, Dropbox presents a simple but playful design with clear navigation links for users to continue on their way.

Airbnb

404 web page design Airbnb

Similar to Dropbox, Airbnb combines a simple on-brand illustration with a clear message and useful links for the user. The illustration again has a comedic element to poke fun at the error.

]]>
How to Create a Custom WordPress 404 Error Page https://1stwebdesigner.com/wordpress-404-error-page/ https://1stwebdesigner.com/wordpress-404-error-page/#comments Thu, 16 Feb 2017 17:00:40 +0000 http://www.1stwebdesigner.local/?p=10593 An error 404 is when a visitor tries to access a page that does not exist. Sometimes people tend to overlook this feature, and never think about designing for it. Taking the time to make a user-friendly 404 page could mean the difference in a user staying on your website, or leaving.

Chances are you have created your website and checked multiple times to be sure that every link leads to somewhere. Eventually over time you may forget about a link that leads to a post you removed, or possibly changed the name to. Even if a visitor is searching for a page directly and they don’t get it right, then they will be taken to the error 404 page.

These can be made very user-friendly utilizing the WordPress template tags, and little bit of know-how.

Understanding The Error 404

The error 404 is a message that the visitor will receive when a page or post is not located. This is by default included within WordPress, but not with all themes. If you have created a custom theme, then you can increase the chances of a user sticking around even though they didn’t find what they were looking for with a properly designed 404 page.

The Basic Error 404 Template

The basic error 404 template is included with some WordPress themes but not all. WordPress is set to automatically look for the file 404.php when an error 404 is reached. If this file is not present, then it will give a basic error message which is not user-friendly.

If you do not already have this file you can create it. Make a new blank file and name it 404.php

Here is the basic code we will start with:

The 404.php File

<?php get_header(); ?>


<h2>Error 404 - Page Not Found.</h2>


<?php get_sidebar(); ?>

<?php get_footer(); ?>

The above code within the 404.php file would give a simple output wrapped in H2 tags that would read “Error 404 – Page Not Found.” – It would also get the WordPress Header, Sidebar, and Footer. These are all optional and should be modified to fit your WordPress theme.

We want to take this a few steps further to achieve our goal. Make a note that I am using the get_header() along with get_sidebar and footer to call our theme template files. Your’s may vary slightly and you will have to adjust your 404.php file accordingly.

Starting To Work On It

First, We will add the search form to our basic 404 page to make it a bit more helpful. This way even if a visitor lands on your 404, they then have the option of searching your site. This is the first method to help users stick around instead of leaving.

404.php File – Added Search Form

<?php get_header(); ?>

<h2>Error 404 - Page Not Found.</h2>

Search:

<?php include(TEMPLATEPATH . "/searchform.php"); ?>

<?php get_sidebar(); ?>

<?php get_footer(); ?>

Making It More Dynamic

To create a more dynamic error 404 page you can use redirects so that the user only sees the error briefly, then gets redirected to your home page. This page can be made to be somewhat SEO friendly as well.

For this next example we can start by editing the header.php file of your template. Within the meta tags at the top of your header.php file you can add the following:

The header.php File

<?php if (is_404()) { $redirectHome = get_option('home'); ?>
<?php echo $redirectHome; ?>

After this is added we will then edit our 404.php file to look like this:

404.php File

<?php get_header(); ?>

<h1>Error 404 - File Not Found.</h1>

<h3>Please <a href="<?php bloginfo('home'); ?>" Click here</a> to return to our home page, or you can wait to be redirected in 15 seconds.</h3>

<?php get_footer(); ?>

The above example will allow the user to land on the 404 error page but then automatically take them back to the home page. This will also help users stick around instead of them being left confused and leaving your website.

This example may not always be the best solution for everyone but can be helpful to someone looking for something specific on your site.

Making sure it works

You can test your 404 error page by typing your URL and following it with a page that you know does not exist.

Example: http://www.yourwebsitedomain.com/test404page.php

That should bring you to your 404 page for viewing and testing.

If it doesn’t work

If by chance your server is not automatically bringing you to your 404.php file we can modify our .htaccess file to make it work. Locate your .htaccess file within your WordPress install and add the following line to it:

ErrorDocument 404 /index.php?error=404

If your WordPress install is not in the root directory you will need to make sure the above code reflects that. If you have installed WordPress into a subfolder then modify your .htaccess like this:

ErrorDocument 404 /YOURSUBFOLDERNAME/index.php?error=404

This will force the use of your 404.php file.

A full example

The code below is a full demonstration that will show you some ways you can use the 404.php file to help users that have found something that doesn’t exist. Take a look at it and notice the options we are giving them to keep them around, and to help them find content.

<?php get_header(); ?>

<h1>404 Error</h1>

We cannot seem to find what you were looking for.

Maybe we can still help you.

<ul>

<li>You can search our site using the form provided below.</li>

<li>You can visit <a href="<?php bloginfo?>"</a></li>

<a href="<?php ('url'); ?>" the homepage.</a>

<li>Or you can view some of our recent posts.</li>

</ul>

Search:

TEMPLATEPATH . "/searchform.php"); ?>

<h3>Recent Posts</h3>

<ul>
	<?php query_posts('posts_per_page=5'); if (have_posts()) : while (have_posts()) : the_post(); ?>

<li><a href="<?php the_permalink() ?>" title="Permalink for : <?php the_title(); ?>"><?php the_title(); ?></a>
	endwhile; endif; ?>
	</ul>

<?php get_footer(); ?>

Anything above can be changed and styled to fit your needs. In the above example we are displaying that there was an error, and then following it with a list of options for the user. We are also still giving them the option to search our site, and have now added the ability for them to view our recent posts.

The combination of all of these gives the user that reached the page options. These options can be used to ensure a user doesn’t leave right away if they didn’t find exactly what they wanted.

Make it More User Friendly

To make it more user friendly and unique you could consider using the above examples with a different background image of your choice. You can also use html within the 404.php file to make a page all in itself for your error page. Here are some examples of unique error 404 pages for inspiration:

1. Mundofox.com

2. CSSRemix.com

3. CSSRemix.com

4. ChrisJennings.com

5. ook.co.uk

6. Youcastr.com

7. Mixx.com

8. JustCreativeDesign.com

9. Agens.no

10. Mushroomdigital.co.uk

Using it Wisely

It is always good practice for both WordPress and static HTML sites to make use of the 404 page. Either using ads on it to monetize, or using it to better help your visitors navigate your website.

There are many ways to create your own custom 404 error page, and just as many ways to allow it to help website visitors. Use the examples above freely, and experiment with what works best for you.

]]>
https://1stwebdesigner.com/wordpress-404-error-page/feed/ 32