ruby on rails - Setting business name and header images with adaptive payments on paypal -


in order ensure consistent experience want set header image , business on paypal's page, view items names , description , ask customer select shipping address.

i'm using active_paypal_adaptive_payment gem (https://github.com/jpablobr/active_paypal_adaptive_payment) , option 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      }   }]) ) 

the issue doesn't work - not see business names or image, see generic names on left column (the 1 items , flow doesn't ask shipping address).

paypal-generic-message-no-item-details

could please advise?

you can logging paypal, going selling tools , update custom payment pages option create new page style color combination , logo of choice (there size restrictions logo images)


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -