Magento – footer_links static block not working magento 1.9.0.1

magento-1.9static-blocktheme

i'm working with magento 1.9.0.1 with b-responsive theme.there are two static blocks in my backend inside CMS (1) footer_links (2)footer_links_company.
inside my app\design\frontend\b-responsive\enterprise\template\page\html\footer.phtml its is called as:

<?php echo $this->getChildHtml('footer_links') ?>

and here is the content inside that static block:

<ul id="Footer">
<li><a href="{{store direct_url="about-magento-demo-store"}}">About Us</a></li>
<li><a href="{{store direct_url="customer-service"}}">Customer Service</a></li>
<li class="last privacy"><a href="{{store direct_url="privacy-policy-cookie-restriction-mode"}}">Privacy Policy</a></li>
</ul>

but when i remove this code then nothing is happening in frontend means the links are showing there after removing this code. i have flush my cache but nothing happening.

Here is the code inside my page.xml file:

<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
                <block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
                    <label>Page Footer</label>
                    <action method="setElementClass"><value>bottom-container</value></action>
                </block>
                <block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
                <block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>
            </block>

Best Answer

Check in page.xml (or local.xml if the theme only uses this) for the following:-

<block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml">
    <action method="setTitle"><title>Quick Links</title></action>
</block>

The layouts may be controlling the footer link blocks in the footer.

Related Topic