cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 2: Layout personalizado Atributos en productos

SOLVED

Magento 2: Layout personalizado Atributos en productos

Hola amigos, tal y como dice el título ando trasteando Magento2 en un entorno de pruebas y estoy algo ofuscado.

Quiero aplicar un diseño concreto en el bloque de atributos para algunos productos.

 

La actualización XML que estoy utilizando en el diseño de producto la ignora por completo, estoy poniendo esto en el "Layout Update XML" del producto:

 

<body>
   <block class="Magento\Catalog\Block\Product\View\Description" name="details" template="Magento_Catalog::product/view/details.phtml" group="detailed_info" before="-">
     <arguments>
       <argument name="at_call" xsi:type="string">getDetails</argument>
       <argument name="at_code" xsi:type="string">details</argument>
       <argument name="css_class" xsi:type="string">details</argument>
       <argument name="title" translate="true" xsi:type="string">Product Details</argument>
     </arguments>
   </block>
</body>


No llevo mucho con Magento2, me vendría bien algo de ayuda.

Saludos y muchas gracias

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Magento 2: Layout personalizado Atributos en productos

Hi friend, I solved it.
Finally I was able to do the block update directly in the product layout update.
So now, I can see the products with different styles for the attributes depending of the product layout update.

 

Thank you so much.

View solution in original post

2 REPLIES 2

Re: Magento 2: Layout personalizado Atributos en productos

You can only set below xml tag for Design Layout in Admin panel,

referenceContainer, container, update, move 
You have given Block tag and arguments tag which are not allowed to system admin.
So you need to try with some different way.
 
 
 
If Issue Solved, Click Kudos/Accept As solutions. Get Magento insight from
Magento 2 Blogs/Tutorial

Re: Magento 2: Layout personalizado Atributos en productos

Hi friend, I solved it.
Finally I was able to do the block update directly in the product layout update.
So now, I can see the products with different styles for the attributes depending of the product layout update.

 

Thank you so much.