I'm trying to remove the tagging feature from product pages in my Magento install.

Here are the steps I followed to try to do that:

  1. Disabled caching in the Magento admin pages
  2. Cleared my browser cache
  3. Disabled Tags in the admin pages both for default config and individual stores (Dashboard > System > Config > Advanced > Mage_Tag > Disable > Save was the method I used)
  4. Commented out everything in tags.xml

That didn't work the way I expected it to, though. It appears that the tagging functionality no longer works, but the "Tags" tab and the form for adding tags are still displayed on product pages.

How can I remove the tagging feature entirely, including the displayed tags and the add-a-tag form?

link|improve this question
1  
Without context "Disabled Tags in the admin" is a meaningless statement. Describe the steps you took to disable the tags in the admin and people will be better able to help you. – Alan Storm May 26 '11 at 17:53
just updated the question with the requested details – Craig Fifield May 26 '11 at 18:14
feedback

3 Answers

Easy one :) Just add following in local.xml (inside layout tags).

<catalog_product_view>
    <reference name="product.info.additional">
        <action method="unsetChild"><name>product_tag_list</name></action>
    </reference>
</catalog_product_view>
link|improve this answer
thanks Daniel, that didn't work either but it did make me review catalog.xml and I was able to remove the tags tab by commenting out the relevant line within the 'product view' section. – Craig Fifield May 31 '11 at 16:19
feedback

which tag.xml did you comment out? The one in your custom theme or the default? You need to do both, otherwise the default layout simply reinserts the values you omitted.

The <catalog_product_view> node in tag.xml is the one you are interested in.

I suggest that you read the article @Alan wrote on Magento XML Layout and install the LayoutViewer extension (or buy CommerceBug) to check that the layout updates are not being inserted then report back here if you still have questions.

HTH,
JD

link|improve this answer
I commented out everything in tags.xml in the custom theme, default and even the modern theme since it was also there. Basically every tags.xml file I could find. I'll check out the resources you mentioned. – Craig Fifield May 27 '11 at 13:44
feedback

If you are using a local.xml then just use this code:

<remove name="product_tag_list" />

Using local.xml is the easiest way to modify your page. Also the best way btw. Better then just disabling it via backend. Via xml it doesn't load so in the end performance of your shop is better.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.