有谁知道最近 PayPal 处理返回值的方式是否发生了变化?
当有人从我们的网站购买商品时,他们过去常常会看到类似“Return to Business Name”的信息。但是在过去的几周里,他们看到了“返回 person@website.com”。这让他们感到困惑,因为他们希望返回到确认页面,在那里他们可以下载 PDF 文件或只看到“感谢您的购买”。奇怪的是,单击 person@website.com 链接会将他们带到正确的页面,但大多数人不会尝试,因为它看起来像一个电子邮件地址。
我们的按钮代码没有改变:
<!-- Return URL Values. -->
<input type="hidden" name="return" value="http://www.test.com//Success.php">
<input type="hidden" name="cancel_return" value="http://www.test.com/index.htm">
该代码还包含以下内容:
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="person@website.com" />
有什么建议么?
谢谢山姆