Shopify FlowのSlack通知メッセージのカスタマイズについて

特定の商品の注文が入った場合にのみ、注文内容の通知がSlackに来るように設定しています。

Slackのメッセージ内容に、特定の商品のみのオプション内容(Option/Custom attributes)を表示させたいのですが、注文に特定商品以外の商品が含まれている場合、注文内容全てが表示されてしまいます。

商品を絞って表示させる方法などご存知の方がいらっしゃいましたら、ご教示いただけますと幸いです。

現状のメッセージ内容-------------------------------------
{% for lineItems_item in order.lineItems %}
{{lineItems_item.product.title}}のご注文が入りました。(特定の商品に絞りたい)
{% endfor %}

オプション
{% for lineItems_item in order.lineItems %}
{% for selectedOptions_item in lineItems_item.variant.selectedOptions %}
{{selectedOptions_item.value}}(lineItems全てではなく特定の商品のみに絞りたい)
{% endfor %}
{% endfor %}
その他のオプション
{% for lineItems_item in order.lineItems %}
{% for customAttributes_item in lineItems_item.customAttributes %}
{{customAttributes_item.key}} {{customAttributes_item.value}} (lineItems全てではなく特定の物のみに絞りたい)
{% endfor %}
{% endfor %}