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:
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:
Could you share your store URL?
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

If this solution is worked, then please Like this and Mark this as accepted solution!
Laddi
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; }