gpt4 book ai didi

wordpress - 我正在尝试将 PayPal Payment 与 WordPress 中的 Contact Form 7 集成,但我的重定向无法正常工作

转载 作者:太空宇宙 更新时间:2023-11-03 16:32:52 25 4
gpt4 key购买 nike

我在一个慈善网站上工作,我们希望通过 paypal 接受成员(member)付款和捐款。

我在使用 Contact Form 7 和使用可变付款金额重定向到 PayPal 时遇到问题。我真的希望有人可以帮助我解决这个问题,或者为我提供一些见解。

我读了This Post ,这听起来很简单,但是,在发送我的电子邮件时,表单没有重定向到 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=#####&currency_code=GBP&amount="+price+"&return=http://www.example.org/join-or-renew-your-membership-online/";
window.location = url;
}
</script>
on_sent_ok: "my_redirect();"

有人有这方面的经验吗?

最佳答案

感谢评论!

在一位 friend 的故障排除帮助下,我已经弄清楚如何使用 contactForm7 实现这一点 - 事实上,我相信您可以扩展此解决方案,并直接向 PayPalmy 问题提交大量动态信息。

这就是我所做的 - 它与 this guy does here 基本相同

但是,我没有将该代码放在 CF7 表单页面的“附加设置”区域 - 我添加了以下内容:

<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=#######&currency_code=GBP&amount="+price+"&return=http://www.example.org/join-or-renew-your-membership-online/";
window.location = url;
}
</script>

在顶部,表单的其余部分构建 html 和标签,就在表单本身的代码之前: 您的姓名(必填):[text* your-name]

等等

然后在附加设置框中..我只调用了函数 on_sent_ok: "my_redirect();"

成功了!它获取用户在“你想给我们多少钱”框中输入的值,并将其提交给 paypal

希望其他人能从中受益

再次感谢您花时间查看和帮助

-5tratus

关于wordpress - 我正在尝试将 PayPal Payment 与 WordPress 中的 Contact Form 7 集成,但我的重定向无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20478657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com