Magento – Unset magento toolbar-bottom in local.xml

ce-1.9.0.1product-listtoolbar

Is it possible to remove only the bottom toolbar of a category page using the local.xml file without editing the template files? I want to keep the top toolbar..

Maybe something along these lines?

<reference name="content">
  <block type="catalog/product_list" name="featured" template="catalog/product/list.phtml">
    <action method="setHideToolbars"><value>1</value></action>
  </block>
</reference>

Best Answer

Without editing the template files is not possible.
But here is a possible solution to hiding parts of the toolbar or splitting the toolbar in paging and sorting. One at the top and one at the bottom.

If you want to hide the full toolbar from the bottom, edit catalog/product/list.phtml and remove the lines

<div class="toolbar-bottom">
    <?php echo $this->getToolbarHtml() ?>
</div>

Or you can do it via css by setting display:none for the .toolbar-bottom class.