Magento-1.9 Layout Blocks Product View – Remove Product Information, Reviews, Tags Block from Product Page

blockslayoutmagento-1.9product-view

I am trying to remove a certain block from my product page in Magento, but can't seem to find where I should delete it. I think it's somewhere in the XML files, but since I'm not that good of a web-developer, I figured it's stupid to just try to delete some files.

In the Magento admin I already disabled the 'tags' function (admin -> system -> configuration -> advanced -> disable Mage_Tag), but I can't find where to delete the entire block.

The block circled in red in the picture is the block I'm trying to delete. So also 'productomschrijving' and 'extra informatie'.

The block I'm trying to delete

Best Answer

You should have to create local.xml file inside your frontend theme folder app/design/frontend/[your_package]/[your_theme] (if you haven't already)

And insert the following lines there

<?xml version="1.0"?>

<layout version="0.1.0">

<catalog_product_view>
    <reference name="product.info.tabs">
        <action method="unsetChild">
            <child>description</child>
        </action>
        <action method="unsetChild">
            <child>additional</child>
        </action>
    </reference>
</catalog_product_view>

</layout>

you can change your tag name to your product description and extra information tag given in theme.

Related Topic