(Squarespace) Rename Sold Out Product Add to Cart text

To rename Add to Cart Button on Sold Out Products, you can use this code to Website > Website Tools > Custom CSS.

.sold-out .sqs-add-to-cart-button-inner {
    visibility: hidden;
  font-size: 0 !important;
}
.sold-out .sqs-add-to-cart-button-inner:before {
    visibility: visible;
    content: "SOLD OUT";
    position: center;
 font-size: 12pt !important;
}

2 Likes