BLOG
[Shopify]会員のみ表示方法(reCAPTCHA有効でも対応する方法)
2021/7/24
Shopifyで会員限定サイトを作る方法 — ストアの作成方法
を参考に実装してみたのですが
Shopifyの設定で
スパム保護 > ログイン、アカウント作成、およびパスワードリカバリーページで使用するGoogle reCAPTCHAを有効にする
にチェックを入れているとアカウント作成等がうまくいかなかったです。
対応方法
1 2 3 4 5 6 7 8 9 10 11 12 13 |
{% unless customer %} {% if template contains 'customers' %} {% assign send_to_login = false %} {% else %} {% assign send_to_login = true %} {% endif %} {% endunless %} {% if send_to_login %} <meta content="0; url=/account/login?checkout_url=/" http-equiv="refresh"> {% else %} |
となっているところを
1 2 3 4 5 6 7 8 9 10 11 12 13 |
{% unless customer %} {% if template contains 'customers' %} {% assign send_to_login = false %} {% else %} {% assign send_to_login = true %} {% endif %} {% endunless %} {% if send_to_login and request.path != "/challenge" %} <meta content="0; url=/account/login?checkout_url=/" http-equiv="refresh"> {% else %} |
と対応したらうまくいきました。
Tag:Shopify