Mechanic is a development and ecommerce automation platform for Shopify. :)
Does exactly as it says. :)
Runs Occurs whenever a product is updated, ordered, or variants are added, removed or updated. Configuration includes product tag to watch for, product tag to remove, and ignore tag case.
Mechanic is designed to benefit everybody: merchants, customers, developers, agencies, Shopifolks, everybody.
That’s why we make it easy to configure automation without code, why we make it easy to tweak the underlying code once tasks are installed, and why we publish it all here for everyone to learn from.
(By the way, have you seen our documentation? Have you joined the Slack community?)
shopify/products/update
{% if event.preview %} {% assign product = hash %} {% assign product["admin_graphql_api_id"] = "gid://shopify/Product/1234567890" %} {% assign product["tags"] = options.product_tag_to_watch_for__required | append: ", " | append: options.product_tag_to_remove__required %} {% endif %} {% assign product_tags = product.tags | split: ", " %} {% assign tag_to_match = options.product_tag_to_watch_for__required %} {% assign tag_to_remove = options.product_tag_to_remove__required %} {% if options.ignore_tag_case__boolean %} {% assign product_tags = product.tags | downcase | split: ", " %} {% assign tag_to_match = options.product_tag_to_watch_for__required | downcase %} {% assign tag_to_remove = options.product_tag_to_remove__required | downcase %} {% endif %} {% if product_tags contains tag_to_match and product_tags contains tag_to_remove %} {% action "shopify" %} mutation { tagsRemove( id: {{ product.admin_graphql_api_id | json }} tags: {{ options.product_tag_to_remove__required | json }} ) { userErrors { field message } } } {% endaction %} {% endif %}
true