How to customise appearance of product description on product page

product description show but not entirely and have something like See more that will open to show the full description

Try this code:

{{ product.description | truncate:‘205’ }}…
{{ product.description }}
Read More
.product-description .long { display: none; } .product-description.more .long { display: block; } .product-description.more .short{ display: none; }

1 Like