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

How can I list 60 color variants product from Printify to one listing?

How can I list 60 color variants product from Printify to one listing?

Ace666
Visitor
2 0 0

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 

Replies 2 (2)

JunaidHassan
Shopify Partner
4 0 0

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>
  • Add JavaScript for Redirect
<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.

 

Chat on WhatsApp: +923215836603
Need a Shopify developer? Hire us at junaidhassan2010@gmail.com
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Ace666
Visitor
2 0 0

I did, but when previewed it says: XS(size) - Unavailable, Aqua(color) - Unavailable