Magento – Changing product page “more information tab” view

magento2product-attributeproduct-page

Hi im new to the magento 2 development so i need some help here please.

I've managed to replace the more information(product.attributes) tab to the desired place. But i need to edit the view of this block but i cant find his location. Thanks in advance !
enter image description here

Best Answer

the "More information" is displaying from this file

magento2/vendor/magento/module-catalog/view/frontend/templates/product/view/attributes.phtml
Then override this file in your theme folder and In
magento2/vendor/magento/module-catalog/view/frontend/layout/catalog_product_view.xml
from this xml file below code is

<block class="Magento\Catalog\Block\Product\View\Attributes" name="product.attributes" as="additional" template="product/view/attributes.phtml" group="detailed_info">
                <arguments>
                    <argument translate="true" name="title" xsi:type="string">More Information</argument>
                </arguments>
            </block>

is the reference for More information tab.You can move it and change as per your requirements and Don't change files in Vendor please override it in your Theme directory..

Related Topic