Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hey guys,
I have 60 color variants of a Printify t-shirt and I want to be listed as one listing, they allow you to choose only 12 colors per product, so I created 6 products with same t-shirt, design and sizes but different colors and when publishing I see them as 6 different products in the shop but I want them to be one.
Can some one please help me solve this?
Thank you in advance
You can achieve this with custom solution with coding.
Create a "Parent" Product
Add a new product in Shopify.
Use variant like size but not color.
Add all images (from all 60 colors).
Set it as Visible.
Hide the 6 Printify Products
Uncheck "Online Store" under Sales Channels or tag them as hidden.
These still handle fulfillment.
Add Custom Color Selector
Edit product.liquid or product-template.liquid.
Add a <select> dropdown with 60 color options, each pointing to the correct Printify product URL:
<select id="color-select">
<option value="">Select Color</option>
<option data-url="/products/printify-red?variant=123">Red</option>
<option data-url="/products/printify-blue?variant=456">Blue</option>
</select>
<script>
document.getElementById('color-select').addEventListener('change', function () {
const url = this.selectedOptions[0].dataset.url;
if (url) window.location.href = url;
});
</script>
Let me know if i could helo more with this.
I did, but when previewed it says: XS(size) - Unavailable, Aqua(color) - Unavailable