<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LONG ISLAND WEB HOSTING &#124; LONG ISLAND WEB DESIGN &#187; Removing Footer Encryption From Wordpress Themes</title>
	<atom:link href="http://koin.org/tag/removing-footer-encryption-from-wordpress-themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://koin.org</link>
	<description>WEB HOSTING AND WEB DESIGN FOR THE LONG ISLAND SUFFOLK COUNTY AREA</description>
	<lastBuildDate>Fri, 09 Jul 2010 06:50:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Removing Footer Encryption From Wordpress Themes</title>
		<link>http://koin.org/2010/02/07/removing-footer-encryption-from-wordpress-themes/</link>
		<comments>http://koin.org/2010/02/07/removing-footer-encryption-from-wordpress-themes/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 20:06:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Long Island Computer Repair]]></category>
		<category><![CDATA[Long Island Web Design]]></category>
		<category><![CDATA[Long Island Web Hosting]]></category>
		<category><![CDATA[Remove Wordpress Encryption]]></category>
		<category><![CDATA[Remove Wordpress Footer Encryption]]></category>
		<category><![CDATA[Removing Footer Encryption From Wordpress Themes]]></category>
		<category><![CDATA[Wordpress Theme Encryption]]></category>

		<guid isPermaLink="false">http://koin.org/?p=34</guid>
		<description><![CDATA[Many WP Theme designers will choose to encrypt the footer in base 64 for promotion purposes.  They&#8217;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 [...]]]></description>
			<content:encoded><![CDATA[<p>Many WP Theme designers will choose to encrypt the footer in base 64 for promotion purposes.  They&#8217;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.</p>
<p>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&#8217;s not TRUE encryption.  PHP can be converted to base64 (I&#8217;ll show you an example in a minute) however it&#8217;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.</p>
<p style="text-align: center;">Below I will show you, with screen shot examples, how to bypass this nonsense:</p>
<p style="text-align: center;"><a class="aligncenter" title="FOOTERENCRYPTED" href="http://koin.org/wp-content/uploads/2010/02/footer-looks.png" target="_blank"><img class="aligncenter" src="http://koin.org/wp-content/uploads/2010/02/footer-looks.png" alt="" width="455" height="314" /></a></p>
<p style="text-align: center;"><strong>[<a class="aligncenter" title="FOOTERENCRYPTED" href="http://koin.org/wp-content/uploads/2010/02/footer-looks.png" target="_blank">CLICK TO ENLARGE IMAGE</a>]</strong></p>
<p>Here are the steps that you need to follow:<br />
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.</p>
<p>Find the <span style="color: #ff0000;"><strong>index.php</strong></span> file. Click on it to open it.</p>
<p style="text-align: center;"><a class="aligncenter" title="INDEXPHP" href="http://koin.org/wp-content/uploads/2010/02/indexphp.png" target="_blank"><img class="aligncenter" src="http://koin.org/wp-content/uploads/2010/02/indexphp.png" alt="" width="455" height="314" /></a></p>
<p style="text-align: center;"><strong>[<a class="aligncenter" title="INDEXPHP" href="http://koin.org/wp-content/uploads/2010/02/indexphp.png" target="_blank">CLICK TO ENLARGE IMAGE</a>]</strong></p>
<p>Now you need to find the footer include code. In most of the cases the code would look like this</p>
<pre style="text-align: center;">&lt;?php get_footer(); ?&gt;
</pre>
<p>and would be at the end of <span style="color: #ff0000;">index.php</span> file.</p>
<p>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.<br />
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.<br />
Adding these two codes will not make any difference in the functioning of the theme.</p>
<p style="text-align: justify;">These codes are:</p>
<pre style="text-align: center;">&lt;!--THE FOOTER STARTS--&gt;

&amp;

&lt;!--THE FOOTER ENDS--&gt;</pre>
<p style="text-align: justify;"><strong>You can write anything you want between</strong> &lt;!– and–&gt;</p>
<p style="text-align: justify;">Now our code would look something like this.</p>
<pre style="text-align: center;">&lt;!--THE FOOTER STARTS--&gt;

&lt;?php get_footer(); ?&gt;

&lt;!--THE FOOTER ENDS--&gt;</pre>
<p style="text-align: center;"><a class="aligncenter" title="INDEX" href="http://koin.org/wp-content/uploads/2010/02/index.png" target="_blank"><img class="aligncenter" src="http://koin.org/wp-content/uploads/2010/02/index.png" alt="" width="455" height="314" /></a></p>
<p style="text-align: center;"><strong>[<a class="aligncenter" title="INDEX" href="http://koin.org/wp-content/uploads/2010/02/index.png" target="_blank">CLICK TO ENLARGE IMAGE</a>]</strong></p>
<p><strong> </strong></p>
<p>Now open your site in the browser and <strong>view the page source</strong>. 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 <strong>Ctrl + U</strong> works great.</p>
<p>In the source code you have to <strong>find the code that you have added at the top of the original code.</strong>You can safely scroll all the way down to the bottom to find these codes.</p>
<p>Copy all the code that is between the codes that you have added. This is the actual footer code.</p>
<p style="text-align: center;"><a class="aligncenter" title="SOURCE CODE" href="http://koin.org/wp-content/uploads/2010/02/sourcecode.png" target="_blank"><img class="aligncenter" src="http://koin.org/wp-content/uploads/2010/02/sourcecode.png" alt="" width="455" height="314" /></a></p>
<p style="text-align: center;"><strong>[<a class="aligncenter" title="SOURCE CODE" href="http://koin.org/wp-content/uploads/2010/02/sourcecode.png" target="_blank">CLICK TO ENLARGE IMAGE</a>]</strong><strong> </strong></p>
<p><strong>Copy this code and replace the original footer code (encrypted one) with this particular code</strong>. Now you can  change the footer the way you like.</p>
]]></content:encoded>
			<wfw:commentRss>http://koin.org/2010/02/07/removing-footer-encryption-from-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
