EasyPointsをインストールされた際にテーマにインストールされたウィジェットなどのアセットを削除するには、アプリの設定画面のアセットのアンインストールを利用して頂く必要がございます。
アセットをアンインストールせずにアプリ本体を削除しても、テーマ内のEasyPointsのアセットは削除されません。
アセットを削除するには、
1. アプリを再インストールして、アセットのアンインストールを行う。
または、
2. テーマ内のEasyPointsのコードを手動で削除する。
テーマ内のEasyPointsのコードを手動で削除するには、Shopifyテーマのコード編集画面を開き、`theme.liquid` ファイル内のeasypointsのコメント枠を含むコードを削除すれば、ポップアップなどの表記は削除できます。
コードの例、
{%- comment -%} START EASYPOINTS - DO NOT MODIFY! 変更しないでください! INFO @ https://bit.ly/2Dn7ESM {%- endcomment -%}
{%- if shop.metafields.loyalty['stealth_mode'] == "false" -%}
{% include 'easy_points' %}
{% include 'easy_points_widget' %}
{%- endif -%}
{%- comment -%} END EASYPOINTS {%- endcomment -%}
{%- comment -%} START EASYPOINTS - DO NOT MODIFY! 変更しないでください! INFO @ https://bit.ly/2Dn7ESM {%- endcomment -%}
{%- if shop.metafields.loyalty['stealth_mode'] == "false" -%}
{{ 'easy_points.css' | asset_url | stylesheet_tag }}
{{ 'easy_points.js' | asset_url | script_tag }}
{%- endif -%}
{%- comment -%} END EASYPOINTS {%- endcomment -%}