Shopify Flow is an ecommerce automation platform that enables you to automate tasks and processes within your store and across your apps.
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
Hi Shopify Community
I've added a product metafield with the type "rich text".
Before i had the same product metafield with the type "multi-line text"
The problem with multi-line text is that i can not make a hyperlink.
I can make the hyperlink on the type "rich text".
But when i want to connect Shopify Flows and set up an automation to update product metafield when a product is added to store, it does not work with the new method with a link in the "rich text" type.
Is it not possible to make the automation in Shopify Flows and add the hyperlink which i would like?
Thanks again!
Solved! Go to the solution
This is an accepted solution.
Rich text value is not a HTML text, it's a JSON object under the hood, so when trying to use it in Flow you need to look at it from the GraphQL point of view.
Check https://shopify.dev/docs/apps/build/custom-data/metafields/list-of-data-types#rich-text-formatting to get better understanding.
This is an accepted solution.
Rich text value is not a HTML text, it's a JSON object under the hood, so when trying to use it in Flow you need to look at it from the GraphQL point of view.
Check https://shopify.dev/docs/apps/build/custom-data/metafields/list-of-data-types#rich-text-formatting to get better understanding.
Thank you, Tim!