Magento – Move “More info tab” and it’s content to “details”

magento2

For SEO reason I would like to move the product attributes from "More info" Tab to details.

I could move them above and under the price info, but I want to move them below description (main content)

<page layout="2columns-left" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
    <css src="mage/gallery/gallery.css" media="all"/>
</head>
<body>
    <move element="page.main.title"             destination="product.info.price" before="product.price.final"/>
    <move element="product.info.review"         destination="product.info.price" after="page.main.title"/>
    <move element="product.info.overview"       destination="product.info.price" after="product.info.review"/>
    <move element="product.info.mailto"         destination="product.info.addto" after="view.addto.compare"/>
    <move element="product.attributes"         destination="product.info.details" after="product.info.description"/>
</body>

Best Answer

Update file app/design/frontend/Vendor/Theme/Magento_Catalog/layout/catalog_product_view.xml of your theme and add following code inside <body> node:

<move element="product.attributes" destination="content" after="-" />

It will move attributes visible in More Information tab to product details section and will be shown below product details.