Skip to main content

Remove Footer Credits of the WordPress Theme Twenty Fourteen (2014)

How do you remove the footer credits and show a custom copyright text in the WordPress theme Twenty Fourteen?

Here's a quick guide on the same which will let you add Custom Footer Copyright Texts in the WordPress theme Twenty Fourteen by removing the default Proudly Powered by WordPress credits.

Twenty Fourteen - a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider.

With more than 300,000 active installs, it appears to be always readable and good looking either for desktops, tablets or smartphones. The design of the theme is certainly not groundbreaking or out of this world but... it offers a very clean, polished and minimalist design.


Let's get started with the removal of Proudly Powered by WordPress text from the footer of the WordPress theme Twenty Fourteen.


Steps to Add Custom Copyright Text by Removing the Default Footer Credits from the WordPress Theme Twenty Fourteen

Here's the step-to-step guide on the same:

Step 1: Log in to the wp-admin

First of all, log in to the wp-admin of your website and install the theme Twenty Fourteen if you haven't done it already.

Step 2: Open the Theme Editor

Navigate to the Appearance menu from the admin panel and then click on the Editor option i.e. Appearance > Editor.


Step 3: Locate footer.php from the Right Hand Side Navigation Menu

From the right side navigation, look for the file named as footer.php (Theme Footer) and you can edit some codes and make it look as per your desired look.


Step 4: Start Editing the File footer.php

I'm not a coder, but still, it's quite easy to add custom copyright texts by removing the default one.



You will just have to edit codes in the lines 26 and 27 (in the Twenty Fourteen Version 2.2) in the footer.php file.

For Example, if you want to appear your copyright texts as "Copyright © 2018 | YourSite", then you have to replace lines 26 and 27 in your footer.php with the following lines:

<a href="<?php echo esc_url( __( 'http://YourWebsite.com', 'twentyfourteen' ) ); ?>" class="imprint">
<?php printf( __( 'Copyright © 2018 | YourWebsite', 'twentyfourteen' ), 'WordPress' ); ?></a>

As it is shown in the image below:


Where YourWebsite is the name of your website and http://YourWebsite.com/ is your website address.

That's it.

You're done with adding a custom copyright text to your WordPress theme Twenty Fourteen.

How to Just Hide the Default Footer Credits of WordPress Theme Twenty Fourteen

If you just want to hide the footer credits from the WordPress theme Twenty Fourteen without adding a custom copyright text then that's even easier. Just navigate to Appearance >Customize> Additional CSS and add the following CSS lines:

.site-info{
 display:none;
}

Which should look something like the image below:


That's it.

If you have got any better soultion, then please let others know in the comments below.

Comments

Popular posts from this blog

Remove Footer Credits of the WordPress Theme Hestia 2.0.4

Hestia is one of the great fully-featured, fully responsive and highly customizable WordPress themes which is offered by Themeisle in free as well the premium version. But for a normal blog or simple website, free version of the theme is more than enough. I have used this WordPress theme on my few blogs and it works just fine. But you don't get an option to remove the footer credits of Hestia in its free version. There are many tricks and articles out there which explain the removal of the footer credits of various WordPress themes. But I didn't find a single resource which explains the way to remove the footer credits of the theme Hestia. I researched a lot and finally got the complete solution using which you can remove the existing footer credits from the theme Hestia and replace it with a custom one. Let's get started... Steps to Remove Footer Credits of the WordPress theme Hestia (2.0.4 Onwards) Here's a step-to-step guide for the same: Step 1: ...

How to Create a Popup on Menu Click in Your WordPress Website

Ever wanted to show a simple popup or subscriber popup when someone clicks any menu item on your WordPress website? Menu item click popups are quite helpful if you don't want to send your visitors to a different page or a new tab but sometimes people find it quite difficult to create a popup when someone clicks a link or a button. But what if I tell you that it's quite simple to do this thing if you own a WordPress powered website. Curious? Well, let's get started... Create a Popup when a Link or Button is Clicked Using this trick you can show a contact form, a button, a image or any text message to your visitors. The WordPress plugin  Popup Maker – Popup Forms, Optins & More makes it quite simple to create any kind of popup on your website. You can install this plugin to your WordPress website by searching at the Add New plugin section or download directly from the official WordPress.org . After installing the popup, you will need to create a ne...

Quick Guide to Remove Footer Credits of the WordPress Theme GeneratePress

In this post, I will be talking about How to Remove Default Footer Credits from the WordPress theme GeneratePress . GeneratePress is a very lightweight (< 1MB while zipped), fast, responsive and SEO friendly WordPress theme with more than 100000+ active installs. The theme works great with many page builders too and supports almost every famous WordPress plugins. GeneratePress provides you with an option to add custom copyright texts to the footer but it doesn't have an option to remove the existing default footer text. So, in this post, I will be sharing a way to even remove the default footer text from the WordPress theme GeneratePress. How to Remove the Footer Credits from the WordPress theme GeneratePress I have broken the trick into a few simple steps which are: Step 1: Log into the wp-admin First of all, log into your wp-admin by going to the YourSite.com/wp-admin. Where YourSite.com is the address of your website. Step 2: Open the T...