Home Forums WoodMart support forum Products description text limit on the shop page Reply To: Products description text limit on the shop page

#54099

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