被告知来自Paypal社区的听取您的技术更多。希望你能帮我解决wordpress插件WP Auctions中的神秘编码问题。
这是一个简单的路线,但是根据添加空格而不是支付宝贝的输出真的很奇怪。
我无法获得插件创建者的支持,因为他们似乎只是放弃了而不是回复电子邮件。我已经在网上搜索了几天可行的黑客行为,没有任何损失:(
这是输出到GBP但不显示PayPal运费的行:
$payment .= "\n\nhttps://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=".urlencode($paypal)."&item_name=".urlencode($rows->name)."&amount=".urlencode($rows->winning_price)."&shipping=".urlencode($rows->shipping_price)."&no_shipping=0&no_note=1¤cy_code=".$currencycode."&lc=GB&bn=PP%2dBuyNowBF&charset=UTF%2d8";
有人发布了一个假想的修复程序,它现在确实显示了运费,但没有以英镑显示,而是以美元显示
$payment .= "\n\nhttps://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=".urlencode($paypal)."&item_name=".urlencode($rows->name)."&amount=".urlencode($rows->winning_price)."&shipping=".urlencode($rows->shipping_price)."&no_shipping=0&no_note=1& "."currency_code=".$currencycode."&lc=GB&bn=PP%2dBuyNowBF&charset=UTF%2d8";
任何帮助都会受到真正的赞赏,因为这是最后一个问题,然后我可以启动我的网站。 (触摸木头)
答案 0 :(得分:0)
设置no_shipping=0
不会使所需的送货地址实际上成为可选的。要求每个交易的送货地址,您需要no_shipping=2
您是否总是接受以英镑付款?您可以像这样硬编码值:
currency_code=GBP