No content to show
User Activity
06-12-2024
YES!!! It works. Thanks so much for your assistance.
06-07-2024
The reason I have a variant metafield, even though my products don't have any variants, is due to a 3rd party app we need to use to ensure we're compliant in the EU. When I'm creating a product, I don't have any variants. I want to take the product ...
06-06-2024
Using:{% for variants_item in product.variants %}{% if forloop.first %}{"amount": "{{ variants_item.price }}","currency_code": "EUR"}{% endif %}{% endfor %} I tired logging that output and I get this: Which looks like it's the same format as the docu...
06-06-2024
Thanks Paul. Gave this a go:{% for variants_item in product.variants %}{% if forloop.first %}{"amount": {{ variants_item.price }},"currency_code": "EUR"}{% endif %}{% endfor %} ... but nothing seems to happen. No errors, but nothing updates. Here's ...
06-05-2024
Would this make more sense?{% for variants_item in product.variants %}{ "amount": {{ variants_item.price }}, "currency_code": "EUR"}{% endfor %} This doesn't result in any errors, but the variant metafield doesn't get updated. Feel like I'm chasing...
06-05-2024
Great. Thanks for the quick turnaround! I've tested this out, using the same steps as above, but using the new Money type. But now I'm running into the following. Thought I could maybe filter the output like this:{% for variants_item in product.varia...
06-04-2024
Great thanks!
06-04-2024
Great! Will you be able to let me know when it's added to the available types list? Or will I have to keep checking the dropdown? Many thanks.
06-04-2024
Ok thanks. I've removed the query and seem to be a little closer.The issue I'm seeing now is that the 'Update product variant metafield' step requires you to set the 'type'. The variant metafield I'm trying to update is a 'Money' field. There isn't a...
06-03-2024
Ok thanks. One step closer. Though the log output doesn't show me the price:["Product ID: gid://shopify/Product/9444634788124\nProduct Title: Omnibus 102\nVariants:\n"] My product doesn't have any actual variants. But I'd of assumed it would still ho...
06-03-2024
Thanks for your reply. Though I'm still a little lost still. I've updated the Query in the 'Get product variant data' to id:{{product.id}} Then just attempted to 'Log output' to see if even that's correct, using:{% for getProductVariantData_item in ...
05-31-2024
Hi guys, I'm really struggling to figure out how to create a flow that will update a variant metafield with a product's price at the point a product is created. My workflow so far has been: 1) 'Product added to store'2) 'Get product variant data'...
The issue we're facing is that in European countries citizens are issued with their own fiscal tax ID. Many retailers, including our clients who have multiple European stores, require this tax ID for their own financial reporting. As it stands, all E...