Posts Tagged ‘Remove Wordpress Footer Encryption’
Removing Footer Encryption From Wordpress Themes
Many WP Theme designers will choose to encrypt the footer in base 64 for promotion purposes. They’ll shove a link to their web address or maybe just tag the job as their own for advertisement. Regardless, Wordpress is open source, so designing a theme and locking the user out of aspects of it is frowned upon. All these themes are released under the GPL and thus all kinds of modifications are allowed in these themes. If you have read some literature from the designer stating that you cannot remove links, be aware that it is just a tactic to fool you. You can even play with the entire Wordpress code if you know how to.
Encrypting a footer with base64 will give any user the runaround when trying to configure the theme, but I have a solution to these encryptions. This is mostly because it’s not TRUE encryption. PHP can be converted to base64 (I’ll show you an example in a minute) however it’s interpreted by the web browser in HTML, therefore your average joe can decode/decrypt/undo this little trick and find the footer in php instead of ancient hieroglyphics.
Below I will show you, with screen shot examples, how to bypass this nonsense:
Here are the steps that you need to follow:
First of all you need to navigate to the theme editor on your control panel. It is located under the Design menu. Once you are there follow these steps.
Find the index.php file. Click on it to open it.
Now you need to find the footer include code. In most of the cases the code would look like this
<?php get_footer(); ?>
and would be at the end of index.php file.
If you are finding it hard to locate use Ctrl +F in your browser and paste the above code there. The browser will do it for you.
Now we need to add two simple codes one on the top and another on the bottom of the footer include code. These codes mean nothing but they will indicate to us the start and the end of the footer.
Adding these two codes will not make any difference in the functioning of the theme.
These codes are:
<!--THE FOOTER STARTS--> & <!--THE FOOTER ENDS-->
You can write anything you want between <!– and–>
Now our code would look something like this.
<!--THE FOOTER STARTS--> <?php get_footer(); ?> <!--THE FOOTER ENDS-->
Now open your site in the browser and view the page source. In most of the browsers you can view the page source by right clicking on the mouse and then selecting view source. In Mozilla the shortcut Ctrl + U works great.
In the source code you have to find the code that you have added at the top of the original code.You can safely scroll all the way down to the bottom to find these codes.
Copy all the code that is between the codes that you have added. This is the actual footer code.
Copy this code and replace the original footer code (encrypted one) with this particular code. Now you can change the footer the way you like.



