Magento – Remove “Upsell” tab on product page

templateup-sells

On the product page, there's a tab called "Upsell". I do not need to use this feature. How do I remove this tab?

Best Answer

In your templates local.xml you can remove the block by adding the following snippet. This however only works if you use the Magento base or RWD theme

<catalog_product_view>
   <reference name="product.info">
      <remove name="product.info.upsell"/>
   </reference>
</catalog_product_view>
Related Topic