Can I redirect my product page to another store's product page?

Topic summary

店主拥有两个 Shopify 店铺,希望实现跨店铺产品页面跳转:当顾客在 A 店铺点击某个产品时,能自动跳转到 B 店铺对应产品的页面。

解决方案:

  • 从逻辑角度不建议这样做
  • 如果确实需要实现,可以通过自定义产品元字段(metafield)来实现:
    • 创建一个专门的元字段用于存储特殊跳转链接
    • 当该元字段存在时,使用其中的链接作为产品跳转目标
    • 如果元字段为空,则使用默认的产品链接

讨论状态: 提供了技术实现方案,但提醒这种做法在业务逻辑上可能不是最佳选择

Summarized with AI on November 20. AI used: claude-sonnet-4-5-20250929.

I own two Shopify stores. It is hoped that when customers click on a certain product in store A, the product page will jump to the product page of this product in store B. What should I do?

在逻辑上最好不要这样做。

但如果你要这样做,你可以自定一个产品元字段去放特殊字体的特殊链接,当存在该元字段时,使用元字段作为该产品的产品链接,如果没有的话就使用默认的链接。