문제

i want to move , related product before product tabs, as highlighted by line in image.

I tried below code but it seems not working and even the related product section is not showing:

<move element="content.aside" destination="content" after="product.info.media"/>

enter image description here

도움이 되었습니까?

해결책

If you want to move related product above product info tab on product detail page. Go to catalog_product_view.xml file

<move element="product.info.details" destination="content.aside"  after="catalog.product.related"/>

This will move related product above product info tabs.

다른 팁

Try this:-

<move element="catalog.product.related" destination="content" after="product.info.media"/>

And if it comes under "add to cart" use this

.your-block-class{clear:both;}

Add this,

  <move element="catalog.product.related" destination="content" before="product.info.details" />
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top