Shopify Flow is an ecommerce automation platform that enables you to automate tasks and processes within your store and across your apps.
2017 Patrick Mahomes National Treasures Rookie Signatures #RS2PM 4/99 BGS 9.5 10 0011671993 |
Assume this is the title. I have used the following to pull the year and place it in the metafield custom.year which works without issue in the Flow I created.
What I would like to do next is pull the player name Patrick Mahomes and place this in another metafield such as custom.playername This will help to automate the population of this data and save a ton of time. I cannot seem to figure out who to make this work.
This is what I put in to pull the year and had no issues.
{%- assign prodyear = product.title | split: " " | first -%}
{{- prodyear -}}
No matter what I try, I cannot seem to figure out how to modify this to skip the first word and then pull the second and third words while leaving a space between them. Just when I think I can do it, I get this
The rendered liquid was too large or had too many assignments
Solved! Go to the solution
This is an accepted solution.
I GOT IT!! HOPE THIS HELPS SOMEONE ELSE
{%- assign plyrname = product.title | split: " " -%}
{{- plyrname | slice: 1, 2 | join: " " -}}
BOOM!
ok let me say that I made some progress...with the following:
{%- assign plyrname = product.title | split: " " -%}
{{- plyrname | slice: 1, 2 -}}
The only problem now is that the result is PatrickMahomes and there is no space..I know I am missing something that is probably so simple..but my brain hurts!
This is an accepted solution.
I GOT IT!! HOPE THIS HELPS SOMEONE ELSE
{%- assign plyrname = product.title | split: " " -%}
{{- plyrname | slice: 1, 2 | join: " " -}}
BOOM!
In Canada, payment processors, like those that provide payment processing services t...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025