Magento 2 – How to Move SKU in Price Block on Product Detail Page

magento2product-view

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

Best Answer

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"/>