我正在一个慈善网站上工作,我们希望通过贝宝接受会员付款和捐款。
我在使用联系表 7 时遇到问题,并使用可变付款金额重定向到 PayPal。我真的希望有人可以为我提供帮助或对这个问题有所了解。
我读了这篇文章,这听起来很简单,但是,当我的电子邮件被发送时,表单并没有重定向到 PayPal,事实上它根本没有做任何事情,甚至没有给我“谢谢你的表单已经提交”通知。
我的表格有这一行: £[text* AmountPaying 6/ id:PayingThis]
在“其他设置”下,我插入了这个:
<script>
function my_redirect() {
var price = document.getElementById("PayingThis").value;
var url = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=#####¤cy_code=GBP&amount="+price+"&return=http://www.example.org/join-or-renew-your-membership-online/";
window.location = url;
}
</script>
on_sent_ok: "my_redirect();"
有人有这方面的经验吗?