PayPal自定义按钮代码: "用户必须接受付款"

问题描述 投票:0回答:1

我创建了自定义的PatPal按钮代码,我想给用户添加手动输入价格的功能。

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="[email protected]">

Price:
<input  name="amount" type="number" step="0.01" value="1.00"> GBP
<br/><br/>
Name/Service Description:<br/>
 <textarea cols="40" rows="5" style="width:400px;height:200px;word-break: break-word;" required name="item_name"></textarea>
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="notify_url" value="https://fromtotranslations.com/?wp_paypal_ipn=1">
<input type="hidden" name="bn" value="WPPayPal_BuyNow_WPS_US">
<br/><br/><br/>
<input type="image" style="max-width:200px" src="https://i.ibb.co/YcBX3Ww/paypall-button.png" border="0" name="submit">

我想添加用户手动输入价格的可能性。付款已完成.但我还没有在我的PayPal仪表板上看到它.作为客户,我有通知,卖家必须确认付款。

作为客户,我有通知,卖家必须确认付款。

enter image description here

看来,PayPal没有将我的电子邮件识别为PayPal帐户,或者我不知道在哪里接受客户的付款。

你能帮助我吗?

php html forms paypal
1个回答
0
投票

[email protected] 你的PayPal商业账户的主要电子邮件地址?

也许可以尝试将此值替换为指向你希望接收PayPal付款的商业账户的值。


同时,似乎没有一个PayPal商业账户与该电邮地址相关联。[email protected]所以这就是为什么没有人接受付款的原因。如果没有人用PayPal注册该邮箱接受,将在30天内自动退款。

© www.soinside.com 2019 - 2024. All rights reserved.