hii
I was inquiring if there is a way to hide these variables from the page and not appear to the customer except when entering the product page, because its appearance is very annoying from the outside
I hope you can help me
Please share your store URL.
Please share your store URL
store password.
store password. ??
paste this code in theme.scss
.product-collection__options{
display:none ! important;
}
.product-options__value--large-text, .product-options__value--text {
display: none !important;
}
@Maven95
Add this if above code not work.
Thank you.
Please add the following code at the bottom of your theme.scss.liquid or theme.css file.
#shopify-section-carousel-related-products .product-options.product-options--type-collection.js-product-options{
display: none;
}
Hope this works.
Thanks!
…
#shopify-section-carousel-related-products .product-options.product-options--type-collection.js-product-options{
display: none;
}
don’t work :_(((
i got it
.product-options.product-options--type-collection.js-product-options {
display: none;
}
thx