Skip to content
Free shipping and returns
icon-X
Close menu
Home
Skinny
Ripped
Flare
Cargo
Stacked
Hip Hop
About
Contact
FAQ
Log in
Cart
icon-X
Close cart
Your cart is currently empty.
Home
Skinny
Ripped
Flare
Cargo
Stacked
Hip Hop
About
Contact
FAQ
account
Log in
icon-search
Search
icon-hamburger
Site navigation
icon-bag-minimal
Cart
Search
Search
FAQs
Frequently asked question
Use this text to answer questions in as much detail as possible for your customers.
Frequently asked question
Use this text to answer questions in as much detail as possible for your customers.
icon-X
"Close (esc)"
icon-chevron-left
icon-X
icon-chevron
icon-X
FAQs
document.addEventListener('DOMContentLoaded', function() { const productJson = document.querySelectorAll('[data-product-json]'); if (productJson.length > 0) { for (let i = 0; i < productJson.length; i++) { const current = productJson[i]; const section = current.closest('[data-section-id]'); const currentJson = JSON.parse(current.text); const selectedColor = 'Black'; // Set your default color here if (currentJson.options.length > 0) { const colorOptions = section.querySelectorAll('.single-option-selector'); colorOptions.forEach((select, index) => { const options = select.querySelectorAll('option'); options.forEach(option => { if (option.text !== selectedColor) { option.setAttribute('disabled', 'disabled'); } else { option.removeAttribute('disabled'); } }); }); } } } });