Product page color choice matching product description

Hello all,

I am using Motion Theme.

On the product page, when I am choosing products, different color description stays the same.

How to change the description by color choice? www.jurgibrand.com

Thank You,

Gita

Hey, @gitakup !

To change the product description when a different color is chosen on the product page of your Shopify store’s Motion Theme, you will need to edit the theme’s code.

Here are the steps to follow:

  1. From your Shopify admin dashboard, go to Online Store > Themes.

  2. Find the Motion theme and click on the “Actions” button, then select “Edit code” from the dropdown menu.

  3. In the “Sections” folder, click on the “product-template.liquid” file.

  4. Look for the code that displays the product color options, which should look something like this:

{% for variant in product.variants %}
  
  
{% endfor %}
  1. Modify the code within the label tag to include the color description, like this:
{% for variant in product.variants %}
  
  
{% endfor %}
  1. Replace “Red color description goes here” with the description you want to display for the chosen color variant.

  2. Save the changes to the “product-template.liquid” file.

This should change the product description based on the selected color variant on the product page of your Motion Theme. Repeat these steps for any other color variants you want to update.