在贝宝上使用自适应付款设置公司名称和标题图像
Posted
技术标签:
【中文标题】在贝宝上使用自适应付款设置公司名称和标题图像【英文标题】:Setting business name and header images with adaptive payments on paypal 【发布时间】:2013-04-28 16:09:32 【问题描述】:为了确保一致的体验,我想在 paypal 的页面上设置标题图像和业务,查看项目及其名称和描述,并要求客户选择送货地址。
我正在使用 active_paypal_adaptive_payment gem (https://github.com/jpablobr/active_paypal_adaptive_payment) 和 set_payment_options 选项:
response = ADAPTIVE_GATEWAY.setup_purchase(
:action_type => 'CREATE',
:receiver_list => recipients,
...
)
ADAPTIVE_GATEWAY.set_payment_options(
:display_options =>
:business_name => 'Big Business',
:header_image_url => 'url goes here'
,
:sender_options =>
:require_shipping_address_selection => true ,
:receiver_options => [
:description => _description,
:invoice_data =>
:item => [
:name => _title,
:item_count => 1,
],
:total_shipping => 10.0,
:total_tax => 10
,
:receiver =>
:email => email
])
)
问题在于它不起作用 - 我没有看到任何公司名称或图像,我在左栏中看到通用名称(带有项目且流程不要求提供送货地址的名称)。
您能建议吗?
【问题讨论】:
你有没有想过这个问题? 【参考方案1】:您也可以通过登录 PayPal,然后转到我的销售工具并更新 自定义付款页面 选项来创建具有您选择的颜色组合和徽标的新页面样式(在是徽标图像的大小限制)
【讨论】:
以上是关于在贝宝上使用自适应付款设置公司名称和标题图像的主要内容,如果未能解决你的问题,请参考以下文章