Need help hiding soldout variants on Local Theme

I need assistance with hiding sold-out variants on the Local Theme. Here is the site link: https://www.alohacardshop.com/collections/raw-pokemon/products/550217.

Hi @Alohacardshop ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code

  1. Assets/theme.css
  2. Add code below to end of file
.product-variants--radio .product-variant__item input.disabled+label {
    display: none!important;
}

Hi @Alohacardshop

Please go to Online Store > Themes > Customize > Theme settings > Custom CSS, paste this code, and save

.product-variants--radio .product-variant__item input.disabled+label {
display: none !important;
}