A really simple question with (I pose) a very simple answer ... I want to remove one of the product information tabs from my product viewing page. I want to remove the tab that shows the attributes, and not comment on it in the catalog.xml file. I want to remove it correctly through local.xml.
<action method="addTab" translate="title" module="catalog">
<alias>additional</alias><title>Additional Information</title>
<block>catalog/product_view_attributes</block>
<template>catalog/product/view/attributes.phtml</template>
</action>
I thought there might be a removeTab method , but that didn't work. There is also a method = "unsetChild" , but I don’t see how I would aim at this particular element, since there was no specific name in XML.
Any ideas would be highly appreciated.
source
share