setting up and linking colour swatches to different variants

setting up and linking colour swatches to different variants

martinsmith1
Visitor
1 0 0

I'm looking to set up colour swatches and link the colours to new different product pages

 

Please help..

Replies 9 (9)

EBOOST
Shopify Partner
1189 310 349

Hi @martinsmith1 

May I suggest to update code these steps:

1. Go to Settings-> Custom data

2. Create colors metafield ( namespace: custom, key: colors, type: color -> list of values)

3. Create products metafied ( namespace: custom, key: products, type: product -> list of products)

EBOOST_0-1674653155901.png

4. Add code below to Sections/main-product.liquid

{%  if product.metafields.custom.colors and product.metafields.custom.products %}
  <ul class="l-swatches">
  {% for color in product.metafields.custom.colors.value %}
    <li>
       {%  assign index = forloop.index %}
       {% for p in product.metafields.custom.products.value %}
         {%  if index ==  forloop.index %}
           <a href="{{ p.url }}" style="background-color: {{- color -}}">&nbsp;</a>
         {%  endif  %}
      {%  endfor %}
      
    </li>
  {% endfor %}
  </ul>
{%  endif %}
<style>
  .l-swatches {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  .l-swatches li {
    margin-right: 10px;
    padding: 0;
  }
  .l-swatches li a {
    text-decoration: none;
    width: 20px;
    height: 20px;
    display: block;
  }
</style>
- Hope can help. If you find my reply helpful, please hit Like and Mark as Solution
- Need a Shopify developer? Contact email: eboost10@gmail.com
- Visit our site: https://www.eboosttech.net to view and download shopify themes and magento2 extensions free
- ❤❤DONATE ❤❤Coffee tips
Kaija
New Member
7 0 0

Hello EBOOSt,

 

where do I have to copy the code in the liquid section?

 

If I copy the code in the section, the custom swatsches will be show at the top tight side on the page and not in the variant picker.

 

 

EBOOST
Shopify Partner
1189 310 349

Hi @Kaija ,

Which theme are you working? If you are working on a free theme from shopify. You can find "variant_picker" in sections/main-product.liquid after that refer screenshot below to add code

EBOOST_0-1724827341617.png

 

- Hope can help. If you find my reply helpful, please hit Like and Mark as Solution
- Need a Shopify developer? Contact email: eboost10@gmail.com
- Visit our site: https://www.eboosttech.net to view and download shopify themes and magento2 extensions free
- ❤❤DONATE ❤❤Coffee tips
Kaija
New Member
7 0 0

Hello EBOST,

 

thanks for you answer... now it will look like this.

Kaija_0-1724828152093.png

 

How do I get the boxes to be connected to the swatches or replace them?

 

Thank you

EBOOST
Shopify Partner
1189 310 349

Hi,

What do you mean?

- Hope can help. If you find my reply helpful, please hit Like and Mark as Solution
- Need a Shopify developer? Contact email: eboost10@gmail.com
- Visit our site: https://www.eboosttech.net to view and download shopify themes and magento2 extensions free
- ❤❤DONATE ❤❤Coffee tips
Kaija
New Member
7 0 0

HI @EBOOST,

 

I would like the swatches to have the function to link to another productpage like the rectangles have. Is it possible to change the position of the rectangles to the position of the swatches and make the swatches disappear? or change the code that the swatches and the rectanges are the same button?

Kaija_1-1724843383343.png

 

 

EBOOST
Shopify Partner
1189 310 349

Hi,

Do you mean they look like screenshot below?

EBOOST_0-1724858164014.png

 

- Hope can help. If you find my reply helpful, please hit Like and Mark as Solution
- Need a Shopify developer? Contact email: eboost10@gmail.com
- Visit our site: https://www.eboosttech.net to view and download shopify themes and magento2 extensions free
- ❤❤DONATE ❤❤Coffee tips
Kaija
New Member
7 0 0

Hi @EBOOST,

 

yes if i put in the code the rectangles will apear. But  i would like to either keep the swatches and have them have the function to redirect to another product page or place the rectangles instead of the swatches.

 

EBOOST
Shopify Partner
1189 310 349

Hi,

Could you share your url? I will help to rectangles.

- Hope can help. If you find my reply helpful, please hit Like and Mark as Solution
- Need a Shopify developer? Contact email: eboost10@gmail.com
- Visit our site: https://www.eboosttech.net to view and download shopify themes and magento2 extensions free
- ❤❤DONATE ❤❤Coffee tips