Another great video Jan! I do a lot of work in Power Automate and Zapier for workflows like this. Your explanation is simple, direct, useful, and excellent. Thanks!
So cool, I have fiddled with this flow app, but some areas missing, hey Jan, quick thought, could you do something on customer metafield in a form. Thanks for all the good stuff.
I would LOVE some help creating an automated email sent to a customer 4 YEARS after order fulfilment... any suggestions would be amazing as there are a few conditions like marketing opt-in and automated collection requirements that the customer would need to meet first. Just not sure how / what to put as the fields in the workflow!
Any thoughts on running a periodic check to tag any products that don't have images associated with them? I seem to be able to set something up but I am struggling on how to query product data only by those that don't have images. I can get products with their first image and see products that don't have images but then I can't filter the ones with images out.
Hi, a question: In the define inputs area, I wrote exactly as you wrote the code in the video: { order { customer { orders { displayFinancialStatus } } } }, but I get an error with a red circle in line 2, before { order, the word "order" appears underlined in red. the wizard gives me the suggestion to change it to "getOrderData [Order!]!, If I leave it as "order" I get an error message: "Field 'order' doesn't exist on type 'Query'" and it doesn't let me apply the changes
Hey Jan, great video! I talked with Shopify the other day if they have any Flow coders and they didnt have anyone. Do you have any developers through your coding school that have good experience with flow for hire?
Thanks for the positve feedback! :-) Also great questions, the answer is just a little too long for a single YT comment. The fastest I could to here is help you get in touch with a developer if that's also interesting. www.codingwithjan.com/hire-a-developer
I am trying to place these values in variables to be able to customize a dynamic WhatsApp url, I am using the "Runcode" action of Shopify Flows doing something like var order_total = "{{order_total}}"; How should it be done?
@CodingWithJan i want them to line up the 'frontend liquid' methods to be used in flows too - like formatting emails and order notes much like you can within a theme template. There are too many 'flows can't do that' getting in my way. You can't use | metafield_tag filter, for example.
Hi Jan, danke dir! Mega Video. Bekomme den Fehler "Run Code: TypeError: cannot read property 'orders' of null. Was tun um das zu beheben? Hat es was mit dem Kunden in der Shopify Bestellung zu tun? Habe die Bestellung im Admin angelegt, da der Shop noch nicht ganz konfiguriert ist.
Hi Julian, besten Dank! :-) Was du da siehst in ein Javascript Fehler. Aktuell sind die noch etwas schwierig zu debuggen. Der Fehler oben passiert zum Beispiel, wenn du versuchst auf etwas zuzugreifen, was nicht existiert. zum Beispiel meineVariable = data.orders; Aber sagen wir es gibt "data" garnicht. Oder Data hat keinen Wert (null). Dann gibts auch nicht data.orders. --> TypeError: cannot read property 'orders' of null. Du könntest dein Script mal zusammen mit dem Fehler bei ChatGTP rein kopieren und sagen "try to fix this / or add a check to prevent my code from crashing"
@CodingWithJan Noch eine Frage. Der Flow sollte nur laufen, wenn die Bestellung auch die Versandmethode "Versand" hat, also nicht z.B. bei Abholung im Store oder wenn wir es selber ausliefern. Wie kann ich das noch einbauen?
Hello Sir, your video is very helpful for me. Please help us with a question.......... I have added size variants in my product, but I want to show different title or description to customer for each size. Like the image and price change to select someone. I am waiting for your reply.
I'd like to inquire about determining the optimal sizes for banners, product images, and other graphics. On my laptop, when using the inspect tool, I'm seeing dimensions like 1900x720, but they vary on desktop and other devices. This inconsistency is posing challenges for our designer, who's finding it difficult to create images for multiple sizes. How can we address this effectively?
🌟Learn the JavaScript side of Shopify Development: codingwithjan.com/javascript?src=shopify-flow-yt 👨💻Find a reliable Developer for your project: www.codingwithjan.com/hire-a-developer
Another great video Jan! I do a lot of work in Power Automate and Zapier for workflows like this. Your explanation is simple, direct, useful, and excellent. Thanks!
Awesome video Jan! Great example use-case for the Run Code flow action!
Thanks so much, Liam!! :-)
Great work Jan! I’ve started implementing your hand gestures when explaining code at work. I think they work like a charm 🤣🙏
Have to use all information channels haha 😁
So cool, I have fiddled with this flow app, but some areas missing, hey Jan, quick thought, could you do something on customer metafield in a form. Thanks for all the good stuff.
Good effort, thanks alot! im lucky to be using the flow app when you launched the video.
Thanks. It’s so frustrating that Flow don’t have a test run feature …
That's one of the features I wished for too!
Especially for the run-code block and building queries.
Will make sure to forward this! :-)
I would LOVE some help creating an automated email sent to a customer 4 YEARS after order fulfilment... any suggestions would be amazing as there are a few conditions like marketing opt-in and automated collection requirements that the customer would need to meet first. Just not sure how / what to put as the fields in the workflow!
Any thoughts on running a periodic check to tag any products that don't have images associated with them? I seem to be able to set something up but I am struggling on how to query product data only by those that don't have images. I can get products with their first image and see products that don't have images but then I can't filter the ones with images out.
Hi, a question: In the define inputs area, I wrote exactly as you wrote the code in the video: { order { customer { orders { displayFinancialStatus } } } }, but I get an error with a red circle in line 2, before { order, the word "order" appears underlined in red. the wizard gives me the suggestion to change it to "getOrderData [Order!]!, If I leave it as "order" I get an error message: "Field 'order' doesn't exist on type 'Query'" and it doesn't let me apply the changes
Hey Jan, great video! I talked with Shopify the other day if they have any Flow coders and they didnt have anyone. Do you have any developers through your coding school that have good experience with flow for hire?
Awesome video as always! How do we find the variants?? like SKU variant, product name, notes, customer full name (not first and last name). Thanks
Thanks for the positve feedback! :-)
Also great questions, the answer is just a little too long for a single YT comment.
The fastest I could to here is help you get in touch with a developer if that's also interesting.
www.codingwithjan.com/hire-a-developer
I was just searching to see if there is something which combines flow and purchase orders and came acress you video 😊
I am trying to place these values in variables to be able to customize a dynamic WhatsApp url, I am using the "Runcode" action of Shopify Flows doing something like var order_total = "{{order_total}}";
How should it be done?
Great vid Jan!
Sir, could you please explain how to create a discount - 3 products for $99? I can't seem to find that option in the discount settings.
The Run Code is a HUGE jump forward for the flow app! ❤
Agree! :-)
Next Milestone, is a testing environment if you ask me.
Cheers
@CodingWithJan i want them to line up the 'frontend liquid' methods to be used in flows too - like formatting emails and order notes much like you can within a theme template. There are too many 'flows can't do that' getting in my way. You can't use | metafield_tag filter, for example.
Hi Jan, danke dir! Mega Video.
Bekomme den Fehler "Run Code: TypeError: cannot read property 'orders' of null.
Was tun um das zu beheben? Hat es was mit dem Kunden in der Shopify Bestellung zu tun? Habe die Bestellung im Admin angelegt, da der Shop noch nicht ganz konfiguriert ist.
Hi Julian, besten Dank! :-)
Was du da siehst in ein Javascript Fehler.
Aktuell sind die noch etwas schwierig zu debuggen.
Der Fehler oben passiert zum Beispiel, wenn du versuchst auf etwas zuzugreifen, was nicht existiert.
zum Beispiel
meineVariable = data.orders;
Aber sagen wir es gibt "data" garnicht. Oder Data hat keinen Wert (null). Dann gibts auch nicht data.orders.
--> TypeError: cannot read property 'orders' of null.
Du könntest dein Script mal zusammen mit dem Fehler bei ChatGTP rein kopieren und sagen "try to fix this / or add a check to prevent my code from crashing"
@@CodingWithJan Top, danke für die Rückmeldung. Fehler entdeckt und gefixt :)
@CodingWithJan Noch eine Frage. Der Flow sollte nur laufen, wenn die Bestellung auch die Versandmethode "Versand" hat, also nicht z.B. bei Abholung im Store oder wenn wir es selber ausliefern. Wie kann ich das noch einbauen?
I am grateful! Thanks man :)
Hello Sir, your video is very helpful for me. Please help us with a question.......... I have added size variants in my product, but I want to show different title or description to customer for each size. Like the image and price change to select someone. I am waiting for your reply.
Top Video Jan!!!
I'd like to inquire about determining the optimal sizes for banners, product images, and other graphics. On my laptop, when using the inspect tool, I'm seeing dimensions like 1900x720, but they vary on desktop and other devices. This inconsistency is posing challenges for our designer, who's finding it difficult to create images for multiple sizes. How can we address this effectively?
www.shopify.com/blog/image-sizes
@@CodingWithJan thank you sir
Very helpful! Thank you !
Nice and helpful as always 🔥
Jetzt wid komplett automatisiert 😄
🌟Learn the JavaScript side of Shopify Development: codingwithjan.com/javascript?src=shopify-flow-yt
👨💻Find a reliable Developer for your project: www.codingwithjan.com/hire-a-developer
Real great job ❤
Hello how will I set-up the slack?
Your clients will likely already have a slack workspace or some other internal communication tool. You can ask them to invite you
Hey Jan your formation link is unavailable.
Sry just launched my new website, and was offline for like 15 min. Should be working again :-)
Great video
why dont you link the code you used? As a beginner your video has value up until the flow code. Please link the code
Brutal gut 👍👍
:-)
isso é de mais para mim, eu so quero criar uma loja e vender
❤
:-)
bro i just wanted to say* you are a jesus for creating these videos
LOL 😂
I do appreciate it haha 🙏
nc
P r o m o S M 😎