How to move sku in price block in product detail page and how to move title in magento 2

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

  •  16-02-2021
  •  | 
  •  

Frage

How to move SKU in price block in product detail page in Magento 2

screenshot

enter image description here

i was tried with below code

 <move element="product.info.sku" destination="product.price.tier" after="-"/>

and
How to move title in product detail page alone enter image description here

War es hilfreich?

Lösung

Keep below code inside xml file body tag in your xml file,

app/design/frontend/{Vendor}/{themename}/Magento_Catalog/layout/catalog_product_view.xml

<move element="product.info.stock.sku" destination="product.info.price" after="-"/>

for title

<move element="page.main.title" destination="product.info.main" before="product.info.review"/>
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top