cancel
Showing results for 
Search instead for 
Did you mean: 

How I can set short description after price box on detail page

SOLVED

How I can set short description after price box on detail page

Hi

How I can set short description after price box on detail page?

1 ACCEPTED SOLUTION

Accepted Solutions

Re: How I can set short description after price box on detail page

Hi @krishenuetb254 

 

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"/>
Hope this helps you!
Problem Solved! Click Kudos & Accept as Solution!

View solution in original post

2 REPLIES 2

Re: How I can set short description after price box on detail page

Hi @krishenuetb254 

 

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"/>
Hope this helps you!
Problem Solved! Click Kudos & Accept as Solution!

Re: How I can set short description after price box on detail page

@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