Products description text limit on the shop page
-
Hey, we have another question. How we can limit the number of displayed symbols of products on the shop page?
Attachments:
You must be
logged in to view attached files.
Sorry, the question was a little bit wrong. We want have a limit on product name which will be shown on shop page
Hello,
There is no option for that. The only way out is custom CSS which sets the strict height of the title and hide all the rest. If such a way is acceptable for you, try this CSS:
.product-grid-item .product-title{
max-height:36px;
display:block;
overflow:hidden
}
Please set the height as per your needs, perhaps you will need more or less.
Best Regards