Is it possible to assign a colour to a product without creating a variant. Say a t-shirt comes in one colour i.e. red is it possible to assign the colour red to a product? This can then be used to fi...
No content to show
User Activity
Hi, We are using Shopify Plus with the Wholesale option. We want to be able to add new features and functionality which we are not able to do through the wholesale functionality so are now looking into an Expansion Store. Is an expansion store only a...
Thanks @LitExtension I really appreciate it.I have uploaded an mp4 to variant_media_1. And similar to the code above I have done the following:{% assign product_video = product.selected_or_first_available_variant.metafields.my_fields.variant_media_1....
You are an absolute hero. Not the first time you have helped me
11-05-2021
Hi,I have the following:{% assign product_image = product.selected_or_first_available_variant.metafields.my_fields.image_1 %} According to this link https://shopify.dev/api/liquid/objects/generic-file I should be able to do {{ product_image.media_typ...
08-30-2021
Hey @LitExtension this worked great. Only slight change was{%- capture texting -%}product_ingredients_{{ ing }}{%- endcapture -%}Thanks very much for that. I will mark it as a solution, but if you could make the change so that anyone else looking doe...
08-30-2021
Thanks @drakedev I have tried this myself. Unfortunately it does the same as my original code
Hi,I have the following code{%- assign each_ingredients = product.metafields.product.ingredient_list | split: "|" -%}{%- for ing in each_ingredients -%}{{ 'shop.metafields.product_ingredients.product_ingredients_' | append: ing -}}{% endfor %} Say fo...