チェックしてapp/design/frontend/rwd/default/layout/page.xml、「フッター」の検索を実行してください。フッターブロックに直接アクセスできます。「クイックリンク」は、実際にはのさまざまな場所に設定されていSystem > Configurationます。
これが私が提案するものです:
メイクlocal.xml(と同じフォルダ内にpage.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>
これで、必要な他の2つのセクションに対して2つの静的CMSブロックを作成し、それらをviaにlocal.xml再度追加できます。あなたがそれらを呼ぶとするfooter_postsとfooter_news、私たちはにさらに追加しますlocal.xml:
<?xml version="1.0"?>
<layout version="0.1.0">
    <default>
        <reference name="footer">
            <remove name="footer_links"/>
            <remove name="footer_links2"/>
            <block type="cms/block" name="footer_posts">
                <action method="setBlockId"><block_id>footer_posts</block_id></action>
            </block>
            <block type="cms/block" name="footer_news">
                <action method="setBlockId"><block_id>footer_news</block_id></action>
            </block>
        </reference>
    </default>
</layout>
新規の1.9インストールでテストし、問題なく動作します。