<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Editing Magento&#8217;s Footer Links</title>
	<atom:link href="http://classyllama.com/development/magento-development/editing-magentos-footer-links/feed/" rel="self" type="application/rss+xml" />
	<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/</link>
	<description>Classy Llama Studios is a team of developers, designers and marketers specializing in Magento, Wordpress and Custom Web Application development.</description>
	<lastBuildDate>Mon, 06 Sep 2010 08:09:56 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Peter</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-455</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 06 Sep 2010 08:09:56 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-455</guid>
		<description>I forgot to ask, is it possible to add a separator &quot;&#124;&quot; between the links?</description>
		<content:encoded><![CDATA[<p>I forgot to ask, is it possible to add a separator &#8220;|&#8221; between the links?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-454</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 06 Sep 2010 08:02:45 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-454</guid>
		<description>HI, great post!

How can I change &quot;Contact Us&quot; to just &quot;contact&quot; using the same approach?

Thanks,

Peter.</description>
		<content:encoded><![CDATA[<p>HI, great post!</p>
<p>How can I change &#8220;Contact Us&#8221; to just &#8220;contact&#8221; using the same approach?</p>
<p>Thanks,</p>
<p>Peter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: amadex</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-395</link>
		<dc:creator>amadex</dc:creator>
		<pubDate>Tue, 20 Jul 2010 00:44:36 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-395</guid>
		<description>Hi there! I&#039;ve just tried to build a custom module to get rid of JUST the contacts link, but no luck... Can anybody help me on how to build it or post the code for it?</description>
		<content:encoded><![CDATA[<p>Hi there! I&#8217;ve just tried to build a custom module to get rid of JUST the contacts link, but no luck&#8230; Can anybody help me on how to build it or post the code for it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Pickett</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-302</link>
		<dc:creator>Rick Pickett</dc:creator>
		<pubDate>Mon, 14 Jun 2010 17:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-302</guid>
		<description>Let&#039;s see if your  code works for me... Got it to work. My error was in my etc config.xml file.

app/etc/modules/Dboxx_Contacts.xml




    
        
            true
            local
        
    



app/code/local/Dboxx/Contacts/etc/config.xml




    
        
            0.1.0
        
    
    
       
       	
           Dboxx_Contacts_Helper
        
       
	




app/code/local/Dboxx/Contacts/Helper/Data.php





and in local.xml trying to remove it with



    cms_footer_links
	
		
	



thanks for the walkthrough :)</description>
		<content:encoded><![CDATA[<p>Let&#8217;s see if your  code works for me&#8230; Got it to work. My error was in my etc config.xml file.</p>
<p>app/etc/modules/Dboxx_Contacts.xml</p>
<p>            true<br />
            local</p>
<p>app/code/local/Dboxx/Contacts/etc/config.xml</p>
<p>            0.1.0</p>
<p>           Dboxx_Contacts_Helper</p>
<p>app/code/local/Dboxx/Contacts/Helper/Data.php</p>
<p>and in local.xml trying to remove it with</p>
<p>    cms_footer_links</p>
<p>thanks for the walkthrough <img src='http://classyllama.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kkirchner</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-297</link>
		<dc:creator>kkirchner</dc:creator>
		<pubDate>Mon, 14 Jun 2010 13:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-297</guid>
		<description>Rick - did you wrap the above function in a class like this:

&lt;pre lang=&quot;php&quot; colla=&quot;+&quot;&gt;
class Namespace_Module_Helper_Data extends Mage_Core_Helper_Abstract
{
    public function getContactsUrl() {
        return Mage::getBaseUrl() . &#039;contacts/&#039;;
    }
}
&lt;/pre&gt;

also, did you create a config.xml file in app/code/Namespace/Module/etc/ ? It would look like this:

&lt;pre lang=&quot;xml&quot; colla=&quot;+&quot;&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;config&gt;
    &lt;modules&gt;
        &lt;Namespace_Module&gt;
            &lt;version&gt;1.0.1&lt;/version&gt;
        &lt;/Namespace_Module&gt;
    &lt;/modules&gt;

    &lt;global&gt;
        &lt;helpers&gt;
            &lt;module&gt;
                &lt;class&gt;Namespace_Module_Helper&lt;/class&gt;
            &lt;/module&gt;
        &lt;/helpers&gt;
    &lt;/global&gt;
&lt;/config&gt;
&lt;/pre&gt;

The &lt;module&gt; tag inside helpers is the lowercase name of your custom module.</description>
		<content:encoded><![CDATA[<p>Rick &#8211; did you wrap the above function in a class like this:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p426code1'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4261"><td class="code" id="p426code1"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">class</span> Namespace_Module_Helper_Data <span style="color: #000000; font-weight: bold;">extends</span> Mage_Core_Helper_Abstract
<span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> getContactsUrl<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">return</span> Mage<span style="color: #339933;">::</span><span style="color: #004000;">getBaseUrl</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'contacts/'</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>also, did you create a config.xml file in app/code/Namespace/Module/etc/ ? It would look like this:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p426code2'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4262"><td class="code" id="p426code2"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;config<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;modules<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Namespace_Module<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;version<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1.0.1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/version<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Namespace_Module<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/modules<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;global<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;helpers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;module<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
                <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;class<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Namespace_Module_Helper<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/class<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/module<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/helpers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/global<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/config<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>The &lt;module&gt; tag inside helpers is the lowercase name of your custom module.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Pickett</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-294</link>
		<dc:creator>Rick Pickett</dc:creator>
		<pubDate>Sun, 13 Jun 2010 23:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-294</guid>
		<description>Hey K,

I tried setting up a custom module to remove the contacts link by creating the xml fil with my Namespace_Module.xml, saving it in etc/modules/ and then creating the directory structure under code/local with my Namespace/Module/Helper/Data.php and used the above code you provided and then tried to remove the contacts link by URL helper, and it doesn&#039;t work.

Anything I&#039;m missing in that sequence for creating the custom module? In Config &gt; Advanced &gt;Advanced I see my module in the list, but the function isn&#039;t working.

Thanks</description>
		<content:encoded><![CDATA[<p>Hey K,</p>
<p>I tried setting up a custom module to remove the contacts link by creating the xml fil with my Namespace_Module.xml, saving it in etc/modules/ and then creating the directory structure under code/local with my Namespace/Module/Helper/Data.php and used the above code you provided and then tried to remove the contacts link by URL helper, and it doesn&#8217;t work.</p>
<p>Anything I&#8217;m missing in that sequence for creating the custom module? In Config &gt; Advanced &gt;Advanced I see my module in the list, but the function isn&#8217;t working.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Pickett</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-291</link>
		<dc:creator>Rick Pickett</dc:creator>
		<pubDate>Sat, 12 Jun 2010 18:27:20 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-291</guid>
		<description>thanks kkirchner, figured that out with some trial and error. good work.</description>
		<content:encoded><![CDATA[<p>thanks kkirchner, figured that out with some trial and error. good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kkirchner</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-290</link>
		<dc:creator>kkirchner</dc:creator>
		<pubDate>Sat, 12 Jun 2010 14:53:13 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-290</guid>
		<description>@Rick - I&#039;m sorry about the confusion - my post was incorrect. Try this:

&lt;pre lang=&quot;xml&quot; colla=&quot;+&quot;&gt;
...
&lt;reference name=&quot;footer&quot;&gt;
    &lt;action method=&quot;unsetChild&quot;&gt;&lt;name&gt;cms_footer_links&lt;/name&gt;&lt;/action&gt;
&lt;/reference&gt;
...
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@Rick &#8211; I&#8217;m sorry about the confusion &#8211; my post was incorrect. Try this:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p426code3'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4263"><td class="code" id="p426code3"><pre class="xml" style="font-family:monospace;">...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;footer&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;unsetChild&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>cms_footer_links<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
...</pre></td></tr></table></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Pickett</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-286</link>
		<dc:creator>Rick Pickett</dc:creator>
		<pubDate>Sat, 12 Jun 2010 03:07:30 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-286</guid>
		<description>one last try:

footer_links&lt;!-- /footer --&gt;</description>
		<content:encoded><![CDATA[<p>one last try:</p>
<p>footer_links<!-- /footer --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Pickett</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-285</link>
		<dc:creator>Rick Pickett</dc:creator>
		<pubDate>Sat, 12 Jun 2010 03:05:57 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-285</guid>
		<description> 
	
		
			footer_links
		&lt;!-- /footer --&gt;
	

 </description>
		<content:encoded><![CDATA[<p>footer_links<br />
		<!-- /footer --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Pickett</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-284</link>
		<dc:creator>Rick Pickett</dc:creator>
		<pubDate>Sat, 12 Jun 2010 03:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-284</guid>
		<description>Thanks for more info, but I&#039;m having some issues (1.4.1.0):

I&#039;m trying to remove the CMS Static Block, but it&#039;s removing the links.phtml sourced links instead of the CMS block:




	
		
			footer_links
		&lt;!-- /footer --&gt;
	




Thanks,
Rick</description>
		<content:encoded><![CDATA[<p>Thanks for more info, but I&#8217;m having some issues (1.4.1.0):</p>
<p>I&#8217;m trying to remove the CMS Static Block, but it&#8217;s removing the links.phtml sourced links instead of the CMS block:</p>
<p>			footer_links<br />
		<!-- /footer --></p>
<p>Thanks,<br />
Rick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kkirchner</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-280</link>
		<dc:creator>kkirchner</dc:creator>
		<pubDate>Fri, 11 Jun 2010 14:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-280</guid>
		<description>Yes Gary, I don&#039;t see why not...</description>
		<content:encoded><![CDATA[<p>Yes Gary, I don&#8217;t see why not&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-243</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Fri, 28 May 2010 00:37:13 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-243</guid>
		<description>Thanks! This is helpful.

So does it mean I can do sth like to break the footer into two parts?


......
  &lt; br / &gt;


This seems like a silly method to me....
Any thought?
Thanks.</description>
		<content:encoded><![CDATA[<p>Thanks! This is helpful.</p>
<p>So does it mean I can do sth like to break the footer into two parts?</p>
<p>&#8230;&#8230;<br />
  &lt; br / &gt;</p>
<p>This seems like a silly method to me&#8230;.<br />
Any thought?<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kkirchner</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-241</link>
		<dc:creator>kkirchner</dc:creator>
		<pubDate>Thu, 27 May 2010 22:19:11 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-241</guid>
		<description>beforeText and afterText is for adding anything before or after your link. 

Say you wanted to wrap your link in a span tag: 
&lt;pre lang=&quot;xml&quot; colla=&quot;+&quot;&gt;
&lt;action method=&quot;addLink&quot; translate=&quot;label title&quot;&gt;
  &lt;label&gt;About Us&lt;/label&gt;
  &lt;url&gt;about&lt;/url&gt;  
  &lt;title&gt;About Us&lt;/title&gt;
  &lt;prepare&gt;true&lt;/prepare&gt; 
  &lt;urlParams helper=&quot;core/url/getHomeUrl&quot;/&gt; 
  &lt;position&gt;1&lt;/position&gt;
  &lt;liParams/&gt;
  &lt;aParams&gt;&#039;class=&quot;top-link-about-us&quot;&#039;&lt;/aParams&gt;
  &lt;beforeText&gt;&lt;span class=&quot;whatever&quot;&gt;&lt;/beforeText&gt;
  &lt;afterText&gt;&lt;/span&gt;&lt;/afterText&gt;
&lt;/action&gt;
&lt;/pre&gt;

will make a link like this:

&lt;pre lang=&quot;html&quot; colla=&quot;+&quot;&gt;
&lt;span class=&quot;whatever&quot;&gt;&lt;a href=&quot;[HOME_URL]/about&quot; rel=&quot;nofollow&quot;&gt;About Us&lt;/a&gt;&lt;/span&gt;
&lt;/pre&gt;

NOTE: that - rel=&quot;nofollow&quot; - won&#039;t show up. our thing automatically adds it and i can&#039;t get rid of it.</description>
		<content:encoded><![CDATA[<p>beforeText and afterText is for adding anything before or after your link. </p>
<p>Say you wanted to wrap your link in a span tag:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p426code4'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4264"><td class="code" id="p426code4"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;addLink&quot;</span> <span style="color: #000066;">translate</span>=<span style="color: #ff0000;">&quot;label title&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>About Us<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/label<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>about<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>  
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>About Us<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;prepare<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/prepare<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> 
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;urlParams</span> <span style="color: #000066;">helper</span>=<span style="color: #ff0000;">&quot;core/url/getHomeUrl&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span> 
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;position<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/position<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;liParams</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;aParams<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>'class=&quot;top-link-about-us&quot;'<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/aParams<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;beforeText<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><span style="color: #ddbb00;">&amp;lt;</span>span class=&quot;whatever&quot;<span style="color: #ddbb00;">&amp;gt;</span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/beforeText<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;afterText<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><span style="color: #ddbb00;">&amp;lt;</span>/span<span style="color: #ddbb00;">&amp;gt;</span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/afterText<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>will make a link like this:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p426code5'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4265"><td class="code" id="p426code5"><pre class="html" style="font-family:monospace;">&lt;span class=&quot;whatever&quot;&gt;&lt;a href=&quot;[HOME_URL]/about&quot; rel=&quot;nofollow&quot;&gt;About Us&lt;/a&gt;&lt;/span&gt;</pre></td></tr></table></div>

<p>NOTE: that &#8211; rel=&#8221;nofollow&#8221; &#8211; won&#8217;t show up. our thing automatically adds it and i can&#8217;t get rid of it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-239</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Thu, 27 May 2010 16:40:19 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-239</guid>
		<description>Should this
  

be 



instead?
The &quot;Beforetex&quot; statement I am referring here...

Also what do they mean actually?
And how can I break down the footer links into two lines?
Thanks!</description>
		<content:encoded><![CDATA[<p>Should this</p>
<p>be </p>
<p>instead?<br />
The &#8220;Beforetex&#8221; statement I am referring here&#8230;</p>
<p>Also what do they mean actually?<br />
And how can I break down the footer links into two lines?<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kkirchner</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-171</link>
		<dc:creator>kkirchner</dc:creator>
		<pubDate>Wed, 05 May 2010 18:47:27 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-171</guid>
		<description>With 1.4 - to get rid of all footer links - in local.xml, change:
&lt;pre lang=&quot;xml&quot; colla=&quot;+&quot;&gt;
&lt;action method=&quot;unsetChild&quot;&gt;&lt;name&gt;cms_footer_links&lt;/name&gt;&lt;/action&gt;
&lt;/pre&gt;

to:
&lt;pre lang=&quot;xml&quot; colla=&quot;+&quot;&gt;
&lt;action method=&quot;unsetChild&quot;&gt;&lt;name&gt;footer_links&lt;/name&gt;&lt;/action&gt;
&lt;/pre&gt;


If you know how to make a custom module and want to get rid of JUST the contacts link:

in app/code/local/CUSTOMNAME/MODULENAME/Helper/Data.php:
&lt;pre lang=&#039;php&#039; colla=&quot;+&quot;&gt;
public function getContactsUrl() {
        return Mage::getBaseUrl() . &#039;contacts/&#039;;
}
&lt;/pre&gt;

and in local.xml:
&lt;pre lang=&#039;xml&#039; colla=&quot;+&quot;&gt;
&lt;default&gt;
...
    &lt;reference name=&quot;footer_links&quot;&gt;
        &lt;action method=&quot;removeLinkByUrl&quot;&gt;&lt;url helper=&quot;modulename/data/getContactsUrl&quot; /&gt;&lt;/action&gt;
    &lt;/reference&gt;
...
&lt;/default&gt;
&lt;/pre&gt;
&lt;em&gt;NOTE: make sure your modulename is lowercase&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p>With 1.4 &#8211; to get rid of all footer links &#8211; in local.xml, change:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p426code6'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4266"><td class="code" id="p426code6"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;unsetChild&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>cms_footer_links<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>to:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p426code7'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4267"><td class="code" id="p426code7"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;unsetChild&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>footer_links<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>If you know how to make a custom module and want to get rid of JUST the contacts link:</p>
<p>in app/code/local/CUSTOMNAME/MODULENAME/Helper/Data.php:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p426code8'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4268"><td class="code" id="p426code8"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> getContactsUrl<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">return</span> Mage<span style="color: #339933;">::</span><span style="color: #004000;">getBaseUrl</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'contacts/'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>and in local.xml:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p426code9'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p4269"><td class="code" id="p426code9"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;default<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
...
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;footer_links&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;removeLinkByUrl&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;url</span> <span style="color: #000066;">helper</span>=<span style="color: #ff0000;">&quot;modulename/data/getContactsUrl&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/default<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p><em>NOTE: make sure your modulename is lowercase</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry Crick</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-160</link>
		<dc:creator>Jerry Crick</dc:creator>
		<pubDate>Tue, 27 Apr 2010 18:09:43 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-160</guid>
		<description>Hi
I&#039;m using 1.4. 

This
cms_footer_links
didn&#039;t work for me to remove the footer.

However, the real issue is with contacts (god knows why they made it so hard to change) because it will not adopt the new theme I just downloaded! Like everyone else, I really don&#039;t want to mess with the code code so local.xml seemed like a gift from heaven - except we can&#039;t get rid of contacts!

Any other ideas grately appreciated,

Jerry</description>
		<content:encoded><![CDATA[<p>Hi<br />
I&#8217;m using 1.4. </p>
<p>This<br />
cms_footer_links<br />
didn&#8217;t work for me to remove the footer.</p>
<p>However, the real issue is with contacts (god knows why they made it so hard to change) because it will not adopt the new theme I just downloaded! Like everyone else, I really don&#8217;t want to mess with the code code so local.xml seemed like a gift from heaven &#8211; except we can&#8217;t get rid of contacts!</p>
<p>Any other ideas grately appreciated,</p>
<p>Jerry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ehansen</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-139</link>
		<dc:creator>ehansen</dc:creator>
		<pubDate>Mon, 29 Mar 2010 04:23:15 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-139</guid>
		<description>@nolawi - Yes, this example is for Magento 1.3.2.4.  Magento themes have never shipped with blank copies of local.xml.  You have to create this layout file in your custom layout folder.  So if you have the following structure:

/app/design/frontend/CUSTOM_INTERFACE/CUSTOM_THEME/

you would create the following file:

/app/design/frontend/CUSTOM_INTERFACE/CUSTOM_THEME/layout/local.xml</description>
		<content:encoded><![CDATA[<p>@nolawi &#8211; Yes, this example is for Magento 1.3.2.4.  Magento themes have never shipped with blank copies of local.xml.  You have to create this layout file in your custom layout folder.  So if you have the following structure:</p>
<p>/app/design/frontend/CUSTOM_INTERFACE/CUSTOM_THEME/</p>
<p>you would create the following file:</p>
<p>/app/design/frontend/CUSTOM_INTERFACE/CUSTOM_THEME/layout/local.xml</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nolawi</title>
		<link>http://classyllama.com/development/magento-development/editing-magentos-footer-links/comment-page-1/#comment-138</link>
		<dc:creator>nolawi</dc:creator>
		<pubDate>Mon, 29 Mar 2010 02:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=426#comment-138</guid>
		<description>Are you using Magento 1.4 for this example. It seems like the current version doesnt have layout.xml.. its possible this may have changed - I am using the blank theme... its in the catalog now!</description>
		<content:encoded><![CDATA[<p>Are you using Magento 1.4 for this example. It seems like the current version doesnt have layout.xml.. its possible this may have changed &#8211; I am using the blank theme&#8230; its in the catalog now!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
