How to Add Custom Block in Catalog Category Page in Magento 1.9

blockscatalogcategorymagento-1.9product

How can i add my custom block in catalog category page

enter image description here

<catalog_category_layered translate="label">
    <label>Catalog Category (Anchor)</label>
    <reference name="content">
        <block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
            <block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
                <block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
                    <block type="page/html_pager" name="product_list_toolbar_pager"/>
<!-- i add my block here  -->
                    <block type="quickview/quickview" name="quickview" template="quickview/quickview.phtml" />
                </block>                 
            </block>
        </block>
    </reference>
</catalog_category_layered>

Best Answer

You can always modify your phtml file which displays product listing on category page,

Go to below Path app/design/frontend/default/yourtheme/template/catalog/product/list.phtml

you can set your custom text according the html structure here...

Related Topic