Hi
How I can set short description after price box on detail page?
Solved! Go to Solution.
Please try by adding below code in your theme catalog_product_view.xml
<move element="product.info.overview" destination="product.info.price" after="product.price.final"/>
Please try by adding below code in your theme catalog_product_view.xml
<move element="product.info.overview" destination="product.info.price" after="product.price.final"/>
@krishenuetb254 Add the code inside the below file path.
app/design/frontend/{Themepackage}/{themename}/Magento_Catalog/layout/catalog_product_view.xml
Code which needs to be added is
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <move element="product.info.description" destination="product.info.main" after="product.info.price"/> </body> </page>
Hope it helps!
Thanks