簡體   English   中英

通過Paypal上的自適應付款設置公司名稱和標題圖片

[英]Setting business name and header images with adaptive payments on paypal

為了確保一致的體驗,我想在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 
    }
  }])
)

問題是它不起作用-我看不到任何公司名稱或圖片,我在左側列中看到通用名稱(帶有項目和流程的名稱不要求送貨地址)。

貝寶通用消息無項目詳細信息

您能否提一些建議?

您也可以這樣做,方法是登錄PayPal,然后轉到“我的銷售工具”並更新“ 自定義付款頁面”選項,以使用您選擇的顏色組合和徽標創建新的頁面樣式(徽標圖像有尺寸限制)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM