|
Do You wish to remove ‘Compare products’ functionality at all or do You wish to remove just the box on right/left sidebar?
If You just need to remove sidebar box, edit design/frontend/YourThame/layout/catalog.xml and find
<reference name="right"> <block type="core/template" before="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/> <block type="core/template" name="right.permanent.callout" template="callouts/right_col.phtml"/> </reference>
change it to:
<reference name="right"> <!--<block type="core/template" before="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>--> <block type="core/template" name="right.permanent.callout" template="callouts/right_col.phtml"/> </reference>
As for ‘Shopping options’, to turn it off on search results page edit design/frontend/YourThame/layout/catalogsearch.xml and find
<block type="catalogsearch/layer" name="catalogsearch.leftnav" after="currency" template="catalog/layer/view.phtml"/>
change it to
<!--<block type="catalogsearch/layer" name="catalogsearch.leftnav" after="currency" template="catalog/layer/view.phtml"/>-->
to remove it from ‘normal’ category page, edit design/frontend/YourThame/layout/catalog.xml and find
<block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
and change it:
<!--<block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>-->
I’d like to know what code to display 9 products, 3, 3 and 3 on the front page just like it displays them as if you searched on something that would return 9+ results.
But which products? Do You have only 9 products in Your catalog? Or do You wish to present random/bestselling products?
|