Home › Forums › WoodMart support forum › How to disable clcikable product grid › Reply To: How to disable clcikable product grid
March 4, 2024 at 3:15 pm
#546019
Aizaz Imtiaz Awan
Keymaster
Hello,
Add the following Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
.wd-entities-title{
pointer-events:none !important;
}
.product-element-top, .product-thumbnail, a img{
pointer-events:none;
cursor: default;
}
Best Regards.