- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
i want to remove the footer block
i want to remove the footer block with
Because my theme comes with another footer and i'm just going to add these links into there
can some one please help
thank you
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: i want to remove the footer block
If you just want to turn of the static block for these links, go to:
CMS > Static Blocks and select the block. Then set the status to "Disable".
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: i want to remove the footer block
from magento magento backend pannel
CMS > Static Blocks and select the block. Then set the status to "Disable".
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: i want to remove the footer block
You Can use another solution with like this,
going to page.xml in to frontend/base/default/layout then going to footer block and remove or comment block with name is footer_links
If you need any question or support, feel free dop for us an message to SulopaStore
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: i want to remove the footer block
Hi @Umair
Create local.xml in your magento theme like a path.
app\design\frontend\myPakage\myTheme\layout\local.xml
And add the code in your created local.xml
<?xml version="1.0"?> <layout version="0.1.0"> <default> <reference name="footer"> <remove name="footer_links" /> <remove name="footer_links2" /> </reference> </default> </layout>
Please clear all catch and check front-end site.
Eric Baily