Grey out Sold out products

To make sold out products grey out on Shop/Category Page, like this.

You can use this code to Custom CSS box.

div.grid-item.sold-out {
    opacity: 0.2 !important;
    pointer-events: none;
}

1 Like