shopify dawn主题注册后如何自动登录?

How to auto login after registration in shopify dawn theme?

我在 shopify 上有一个网站。 shopify dawn主题注册后如何自动登录?

默认情况下,新客户在注册新帐户后会自动登录到帐户页面。请按照以下步骤 auto-login 客户在注册新帐户时转到特定页面。编辑您的主题 layout/theme.liquid 文件并在 body 标签末尾之前添加此脚本。并更改“REDIRECT_PATH”。

 <script> 
       (function() { 
 var REDIRECT_PATH = '/account'; // change page url you want redirect after login
       
         var selector = '#create_customer, form[action$="/account"][method="post"]', 
             $form = document.querySelectorAll(selector)[0]; 
       
         if ($form) { 
           $redirect = document.createElement('input'); 
           $redirect.setAttribute('name', 'return_to'); 
           $redirect.setAttribute('type', 'hidden'); 
           $redirect.value = REDIRECT_PATH; 
           $form.appendChild($redirect); 
         } 
       })(); 
          </script>