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
  •  | 
  •  

Domanda

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

È stato utile?

Soluzione

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"/>
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top