How to make grouped products table show in its own row above the details tab and below the images/short description?

magento.stackexchange https://magento.stackexchange.com/questions/310869

Pregunta

If it's a grouped product then how do I show the products table above the details tab in the Luma theme?

See this image to for a better explanation: Move grouped product table to details area magento2 luma theme

Basically, I want it to work as follows: If the product type is 'grouped' then display grouped product in its own row that is full-width.

¿Fue útil?

Solución

Add below code before </body> tag in below file :

app/code/design/frontend/[Package]/[Theme]/Magento_GroupedProduct/layout/catalog_product_view_type_grouped.xml

<move element="product.info" destination="content" as="grp" before="product.info.details"/>

It will move grouped products with add to cart. For reference see attached image:

enter image description here

Hope above will help!

Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top