I have a static block identifier named ‘can_content_block_ideas’ and within that block the following template file is being called {{block type=’core/template’ template=’can/home/featured.phtml}} – Now, that template file contains the class (.featured-product-price) that I want to remove using the Custom Layout Update feature in Magento located here: Categories > Custom Design. Below is the XML I am trying to use but I just can’t figure out how to get it to work.
<reference name="can_content_block_ideas"> <block type="core/template" name="hide.content"> <action method="setText"> <text> <![CDATA[ <style type="text/css"> .featured-product-price { display: none; } </style> ]]> </text> </action> </block>