SebaZ
SebaZ

Reputation: 45

Drupal and integration of paypal express checkout

I am new to Drupal. I have a book-publisher website, which is not an onlineshop but that displays numerous Books. They now want to integrate a a pre-order button for one specific book. I figured out the best way and quickest way to do it is to use paypal express checkout. However, the paypal express checkout module just works with Drupal commerce, which is not installed, and I am not sure if it would be viable with all the book items they already have. What would be the best way to integrate paypal express checkout just for that one specific book ?

Upvotes: 0

Views: 1964

Answers (2)

Pierre Buyle
Pierre Buyle

Reputation: 4873

The best way to implement anything in Drupal is to either use an existing contrib module or to create a custom module.

In addition to the Commerce Paypal Express Checkout (which I guess is the one mentionned in the question), which require Commerce to be used, you could also use the PayPal for Payment module, which only require the simpler Payment module.

Out of the box, neither solution will provide a complete working solution.Commerce require lots of configuration. The Payment Form Field module bundle with Payment may be enough for you needs and is easy to configure (add a field to a Content type). But more complexe needs usually require a custom module build with Payment API.

A third option is off-course to implement the PayPal payment yourself, in a custom module.

Upvotes: 1

Ind_KevinG
Ind_KevinG

Reputation: 1945

Go to Getting Started With Express Checkout and have a look at the section titled "Implementing the Simplest Express Checkout Integration". However, this is not the simplest way. A standard PayPal "Buy Now" button would be the simplest way. Go to Single-Item Payments – Buy Now Buttons to read how to do it.

Upvotes: 0

Related Questions