Hello,
I am trying to add two flos in the shopify flow app both for metafields.
-
Update metafields if there’s a tag product.
Starts when “Product status updated”
check if product tag starts with “C1_”(example)
Do this : tried both
a) {% for tags_item in product.tags %}{% if tags_item contains “C1_” %}{{- tags_item -}}{% break %}{% endif %}{% endfor %}
b) {%- for tags_item in product.tags -%}
{%- if tags_item contains “C1_” -%}
{{- tags_item | remove: “C1_” -}}{%- break -%}
{%- endif -%}
{%- endfor -%} -
Translate metafield value. I use shopify translate app
I have the shop in 4 languages, so I should translate into 3 of them.
here basically I don’t how to start