Remove a customer tag when another tag is added, with Mechanic.

Mechanic is a development and ecommerce automation platform for Shopify. :)

Remove a customer tag when another tag is added

Does exactly as it says. :)

Runs Occurs whenever a customer is updated. Configuration includes customer tag to watch for, customer tag to remove, and ignore tag case.

15-day free trial – unlimited tasks

Developer details

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?)

Open source
View on GitHub to contribute to this task
Subscriptions
shopify/customers/update
Tasks use subscriptions to sign up for specific kinds of events. Learn more
Options
customer tag to watch for (required), customer tag to remove (required), ignore tag case (boolean)
Code
{% if event.preview %}
  {% assign customer = hash %}
  {% assign customer["admin_graphql_api_id"] = "gid://shopify/Customer/1234567890" %}
  {% assign customer["tags"] = options.customer_tag_to_watch_for__required | append: ", " | append: options.customer_tag_to_remove__required %}
{% endif %}

{% assign customer_tags = customer.tags | split: ", " %}
{% assign tag_to_match = options.customer_tag_to_watch_for__required %}
{% assign tag_to_remove = options.customer_tag_to_remove__required %}

{% if options.ignore_tag_case__boolean %}
  {% assign customer_tags = customer.tags | downcase | split: ", " %}
  {% assign tag_to_match = options.customer_tag_to_watch_for__required | downcase %}
  {% assign tag_to_remove = options.customer_tag_to_remove__required | downcase %}
{% endif %}

{% if customer_tags contains tag_to_match and customer_tags contains tag_to_remove %}
  {% action "shopify" %}
    mutation {
      tagsRemove(
        id: {{ customer.admin_graphql_api_id | json }}
        tags: {{ options.customer_tag_to_remove__required | json }}
      ) {
        userErrors {
          field
          message
        }
      }
    }
  {% endaction %}
{% endif %}
Task code is written in Mechanic Liquid, an extension of open-source Liquid enhanced for automation. Learn more
Defaults
Ignore tag case
true