How can I display the full product description by default?

How to I set the product description so that all the description is shown as default. At present, the product pages only show the first two lines of the product description, with a “read more” button.

Thanks

Below is example:

Hi @healthandeco

Could you share your store URL?

Hi @healthandeco

Go to main-product.liquid or product-template.liquid file

Find product.description

There wil be code like this

There sould be truncate or strip HTML, Remove the code.

Just use {{ product.descripton }} code

laddisahsi_0-1696396301811.png

If this solution is worked, then please Like this and Mark this as accepted solution!

Laddi

Hi @healthandeco

You can do that by adding this CSS code at the bottom of your theme.css or theme.css.liquid in Online store > Themes > Edit code

.product-single__description.truncated, .product-single__description-full.truncated {
max-height: 100% !important;
}
#ShowHideDescription { display: none !important; }