Page not found

We have recently redesigned this website, which involved changing both the functionality and architecture of several parts of the site. This necessarily involved changed URLs, primarily in sections like our documentation as guides were merged and reorganized. We apologize for the broken links or search results while Google reindexes our site and hope you find what you're looking for in the search results below.

Documentation Customer profile system

NOTE: This section is an outdated description of a system that was about to be written. The new home for this documentation is http://www.drupalcommerce.org/node/297 Customer profiles contain collections of data required to process orders, whether it be b ...
Ryan Ryan Szrama — May 2012 — 1 comment

Documentation Product system

See Ryan's post on the future of products. ...
jody — May 2012 — 1 comment

Documentation Checkout info hooks

hook_commerce_checkout_page_info() hook_commerce_checkout_pane_info() hook_commerce_checkout_page_info() The Checkout module uses this hook to collect information on all the available pages in the checkout process. The checkout form is not a true multi-st ...
Ryan Ryan Szrama — May 2012 — 2 comments

Documentation Function that tells us if the items in Shopping Cart / Basket

<?php // Provided by stevetook in the forums. function items_on_cart () {  global $user;   $cart = commerce_cart_order_load ($user-> uid);   $line_items = count ($cart-> commerce_line_items)? TRUE: FALSE;   return $line_items;}?> ...
joshmiller Josh Miller — May 2012 — 2 comments

Documentation Line Item info hooks

hook_commerce_line_item_type_info() Note: [Commerce Examples](http://drupal.org/project/commerce_examples) has a line item example demonstrating this, and [Commerce Custom Line Items](http://drupal.org/project/commerce_custom_line_items) actually will cre ...
Ryan Ryan Szrama — May 2012 — 1 comment

Documentation Displaying All Orders

Views is the easy way to display all orders, including orders that are cart orders, etc. You can just edit the existing administrative view of orders and expose the filter, etc. There is even a default view to change your Admin Orders view into a Views Bu ...
Richard Jones — May 2012 — 1 comment

Answer Answer to Question 6972

Vote up! 1 Vote down! Great question- as of Commerce 1.5, this message is not simply "disable-able" via the user interface. While we do use Rules to display the Add to Cart message, no such integration was enabled for the remove message. It is s ...
Ryan Ryan Szrama — October 2014 — 1 comment

Discussion Manipulation customer profiles programmatically

Hi. I need to create customer profiles (billing information) when the checkout process begins. It's a requirement of my project: there is no billing information panel on the checkout process, we'll be using the user profile to build it programma ...
Joel Wallis Jucá — October 2012 — 2 comments — Customer Profiles, order, Line Items

Question Managing memberships and recurring payments

Vote up! 2 Vote down! Hi. I have managed to set up a membership "system" with Commerce and Licence. It was easyer that it look at first sight! All I need now is to understand the Paypal gateway. I have a few questions... 1) I just cannot see how ...
Anne Laposte — September 2014 — 1 comment — license, FAQ

Documentation How do I display products for sale?

On a clean install of Drupal Commerce, simply adding products to the backend is not enough to display them for sale with an Add to Cart form. Drupal Commerce separates the definition (on the back end) from the display (on the front end) of a product. This ...
Ryan Ryan Szrama — May 2012 — 1 comment

Pages