Magento – Magento: create static block from Product Filter

blocksce-1.9.2.2layered-navigationlayoutstatic-block

I want to create a static block of the default Magento Filterable Product Attributes, like in the picture below.
The problem is not in creating the static block.
What I don't know is how to have the Product Filter showing up in that block in a way that I can add the block to any page I want..

Is this possible or does the Product Filter only show up when there are products on that particular page?

I am using Magento 1.9.2.2 with the standard rwd template.

block with Filterable Product Attributes.

Best Answer

Several options.
First: product specific by adding Custom Layout Update on any product page.
For instance:

<!-- LAYERED NAVIGATION in left column-->
<reference name="left">
<!-- Layered Navigation Block -->
    <block type="catalog/layer_view" name="catalog.leftnav" before="-" template="catalog/layer/view.phtml">
    <block type="core/text_list" name="catalog.leftnav.state.renderers" as="state_renderers"/>
    </block>
</reference>

Second: use local.xml to trigger the layered navigation block appear on selected types of pages.

<!-- LAYERED NAVIGATION in left column-->
<default>
    <reference name="left">
    <!-- Layered Navigation Block -->
        <block type="catalog/layer_view" name="catalog.leftnav" before="-" template="catalog/layer/view.phtml" >
        <block type="core/text_list" name="catalog.leftnav.state.renderers" as="state_renderers" />
        </block>
    </reference>
</default>
Related Topic