Magento – Magento 2 How to Remove product information tabs

blocksmagento2producttabs

Please suggest how can we remove the "More Information" tabs from product
details page

See : http://awesomescreenshot.com/0f765e4128

Best Answer

You can use the following in your layout file to remove the "More Information" tab:

<referenceBlock name="product.attributes" remove="true" />

If you need to remove the "Details" tab:

<referenceBlock name="product.info.details" remove="true" />
Related Topic