3

默认情况下,当用户在 Shopify 商店中激活他们的账户时,他们会被重定向到他们的账户页面。我想将该重定向的目的地更改为 Shopify 商店中的另一个页面。我已成功为客户登录页面完成此操作,以防止使用 checkout_url 的隐藏输入字段重定向到帐户页面,如以下 Shopify 支持帖子中所述:http: //support.shopify.com/customer/portal/articles/ 313065-在成功登录后是否有可能重定向到特殊页面-

但是,此方法不适用于“激活帐户”表单页面。有没有人成功做到这一点?至少还有一位 Shopify 用户也遇到了这个问题。http://ecommerce.shopify.com/c/shopify-discussion/t/account-activation-form-redirect-105959#comment-113150

任何帮助将非常感激。谢谢!

4

2 回答 2

6

Shopify 的好心人就这个问题回复了我。显然需要在表单中添加以下内容:

<input type="hidden" name="return_to" value="**destination**" />
于 2012-11-09T02:30:28.947 回答
0

最后我放弃了尝试使用

<input type="hidden" name="return_to" value="**destination**" />

我通过将此脚本添加到我的 /account/ 模板页面来解决它

 <script type="text/javascript">
 $(document).ready(function () {
 $(function() {
 if (window.location.href != "http://[yourshopname].com/account") {
 document.location = 'http://[yourshopname].com/'
 }
 }); 
 }); 

 </script>
于 2012-12-27T23:09:07.017 回答