Domanda

Ho creato blocchi statici in CMS, quindi li ha aggiunti al piè di pagina del tema RWD e tutto è stato lavorato alla grande.Ho appena aggiornato i file a 1.9.2.4 tramite Magento Connect Manager e ora un blocco viene duplicato.

My Partial local.xml per questo aspetto:

<reference name="footer">
<remove name="footer.newsletter" />
<remove name="footer_links" />
<remove name="footer_links2" />

<block type="cms/block" name="cms_footer_links_company" before="footer_links_quick">
<!--
    The content of this block is taken from the database by its block_id.
    You can manage it in admin CMS -> Static Blocks
-->
<action method="setBlockId"><block_id>footer_links_company</block_id></action>
    </block>
<block type="cms/block" name="cms_footer_links_quick" after="footer_links_company">
<!--
    The content of this block is taken from the database by its block_id.
    You can manage it in admin CMS -> Static Blocks
-->
<action method="setBlockId"><block_id>footer_links_quick</block_id></action>
</block>
<block type="cms/block" name="cms_footer_links_account" after="footer_links_quick">
<!--
    The content of this block is taken from the database by its block_id.
    You can manage it in admin CMS -> Static Blocks
-->
<action method="setBlockId"><block_id>footer_links_account</block_id></action>
</block>   
<block type="cms/block" name="footer_social_links">
    <action method="setBlockId"><block_id>footer_social_links</block_id></action>
    </block>
</reference>
.

È il primo blocco, footer_links_company, che sta duplicando.Qualche idea?

È stato utile?

Soluzione

Ho risolto questo semplicemente rinominando il blocco tramite Admin -> CMS - Blocchi statici, quindi aggiornando i posti appropriati in local.xml.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top