<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>kerrinhardy.com &#187; zen cart copyright</title>
	<atom:link href="http://www.kerrinhardy.com/tag/zen-cart-copyright/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kerrinhardy.com</link>
	<description>The Ultimate Reference for Customising Zen Cart</description>
	<lastBuildDate>Sun, 25 Sep 2011 04:49:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Edit the Zen Cart Site Copyright Display in Footer</title>
		<link>http://www.kerrinhardy.com/2010/01/25/edit-the-zen-cart-site-copyright-display-in-footer/</link>
		<comments>http://www.kerrinhardy.com/2010/01/25/edit-the-zen-cart-site-copyright-display-in-footer/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 01:16:09 +0000</pubDate>
		<dc:creator>kerrin hardy</dc:creator>
				<category><![CDATA[Zen Cart]]></category>
		<category><![CDATA[zen cart copyright]]></category>
		<category><![CDATA[zen cart footer]]></category>

		<guid isPermaLink="false">http://www.kerrinhardy.com/2010/01/25/edit-the-zen-cart-site-copyright-display-in-footer/</guid>
		<description><![CDATA[The Site Copyright Display is made up of Copyright © &#60;current year&#62; &#60;store name&#62;. Powered by Zen Cart. The Site Copyright Display looks like this: Since Zen Cart version 1.37, the Copyright statement is updated automatically to reflect the current year.  However, you may wish to edit the copyright statement to an inclusive date range, [...]<h4>More Zen Cart:</h4>
<ol>
		<li><a href="http://www.kerrinhardy.com/2010/01/24/anatomy-of-the-zen-cart-footer/" rel="bookmark">Anatomy of the Zen Cart Footer</a><!-- (13.3)--></li>
		<li><a href="http://www.kerrinhardy.com/2010/05/12/turn-off-the-your-ip-address-display-in-the-footer-of-zen-cart/" rel="bookmark">Turn off the ‘Your IP Address’ display in the footer of Zen Cart</a><!-- (11.2)--></li>
		<li><a href="http://www.kerrinhardy.com/2010/08/16/display-advanced-search-on-page-not-found-page-in-zen-cart/" rel="bookmark">Display Advanced Search on &lsquo;Page Not Found&rsquo; page in Zen Cart</a><!-- (10.5)--></li>
		<li><a href="http://www.kerrinhardy.com/2010/06/13/turn-off-the-site-map-page-in-zen-cart/" rel="bookmark">Turn off the Site Map page in Zen Cart</a><!-- (8.8)--></li>
		<li><a href="http://www.kerrinhardy.com/2009/12/31/edit-contents-of-page-2-in-more-information-sidebox/" rel="bookmark">Edit Contents of Page 2 in More Information Sidebox</a><!-- (8.2)--></li>
	</ol>
]]></description>
			<content:encoded><![CDATA[<p>The Site Copyright Display is made up of <em>Copyright © &lt;current year&gt; &lt;store name&gt;. Powered by Zen Cart. </em>The Site Copyright Display looks like this:</p>
<p><img title="Zen Cart Copyright Statement" src="http://www.kerrinhardy.com/wp-content/uploads/2010/01/image65.png" alt="Zen Cart Copyright Statement" /></p>
<p>Since Zen Cart version 1.37, the Copyright statement is updated automatically to reflect the current year.  However, you may wish to edit the copyright statement to an inclusive date range, for example <em>Copyright © 2002-2010 &lt;store name&gt;. Powered by Zen Cart.</em></p>
<ol>
<li>Open the english.php file located in the <em><strong>/includes/languages/</strong></em> directory.</li>
<li>Find this section of code:<code>
<pre class="brush: php; title: ; notranslate">define('FOOTER_TEXT_BODY', 'Copyright &amp;copy; ' . date('Y') . ' &lt;a href=&quot;' . zen_href_link(FILENAME_DEFAULT) . '&quot; target=&quot;_blank&quot;&gt;' . STORE_NAME . '&lt;/a&gt;. Powered by &lt;a href=&quot;http://www.zen-cart.com&quot; target=&quot;_blank&quot;&gt;Zen Cart&lt;/a&gt;');</pre>
<p></code></li>
<li>and modify the define statement as needed:<code>
<pre class="brush: php; title: ; notranslate">define('FOOTER_TEXT_BODY', 'Copyright &amp;copy; 2002-' . date('Y') . ' &lt;a href=&quot;' . zen_href_link(FILENAME_DEFAULT) . '&quot; target=&quot;_blank&quot;&gt;' . STORE_NAME . '&lt;/a&gt;. Powered by &lt;a href=&quot;http://www.zen-cart.com&quot; target=&quot;_blank&quot;&gt;Zen Cart&lt;/a&gt;');</pre>
<p></code></p>
<p><span style="color: #ff0000;">** Be sure to keep the single quote marks in your new define statement.</span></li>
<li>Save the modified english.php file to your override folder.  This will be <em><strong>/includes/languages/CUSTOM/</strong></em> where <em><strong>CUSTOM</strong></em> represents the name of your current template folder.</li>
</ol>
<p><img style="display: inline; border: 0px;" title="Copyright display in Zen Cart" src="http://www.kerrinhardy.com/wp-content/uploads/2010/01/image37.png" border="0" alt="Copyright display in Zen Cart" width="531" height="36" /></p>
<p>When modifying the footer just add in your first year of business to the define statement. It is a good idea to leave the <em>date(&#8216;Y&#8217;)</em> reference so that the year is updated automatically to reflect the current year.  This leaves you with one less thing to think about at the start of each new year.</p>
<p>Note:  It is considered common courtesy to leave “<strong><em>Powered by Zen Cart&#8221; </em></strong>intact if you can as it assists in advertising the Zen Cart project.</p>
<h4>More Zen Cart:</h4>
<ol>
		<li><a href="http://www.kerrinhardy.com/2010/01/24/anatomy-of-the-zen-cart-footer/" rel="bookmark">Anatomy of the Zen Cart Footer</a><!-- (13.3)--></li>
		<li><a href="http://www.kerrinhardy.com/2010/05/12/turn-off-the-your-ip-address-display-in-the-footer-of-zen-cart/" rel="bookmark">Turn off the ‘Your IP Address’ display in the footer of Zen Cart</a><!-- (11.2)--></li>
		<li><a href="http://www.kerrinhardy.com/2010/08/16/display-advanced-search-on-page-not-found-page-in-zen-cart/" rel="bookmark">Display Advanced Search on &lsquo;Page Not Found&rsquo; page in Zen Cart</a><!-- (10.5)--></li>
		<li><a href="http://www.kerrinhardy.com/2010/06/13/turn-off-the-site-map-page-in-zen-cart/" rel="bookmark">Turn off the Site Map page in Zen Cart</a><!-- (8.8)--></li>
		<li><a href="http://www.kerrinhardy.com/2009/12/31/edit-contents-of-page-2-in-more-information-sidebox/" rel="bookmark">Edit Contents of Page 2 in More Information Sidebox</a><!-- (8.2)--></li>
	</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.kerrinhardy.com/2010/01/25/edit-the-zen-cart-site-copyright-display-in-footer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

