Warning: ini_set(): Session save handler "user" cannot be set by ini_set() in include_once() (line 164 of /home/w3shncom/public_html/sites/default/settings.php).
The Drupal Commerce product administration page is a View which created using Views module. It means, we can customize that page with no code by using the Views administration page. Now we will see how to add a form with some filter criteria such as product Title and Price to that page so we can search the product list based on the product Title/Name and Price.
This module is an official contributed module for the Drupal Commerce. When the Drupal Commerce is released, I heard so many people complaining about the separation between Product and Product Display in Drupal Commerce module. So, this module is created in order to solve that problem. This module can simplify the Product Display creation process by providing option the create it at the same time with Product creation.
Drupal 7 has a very great Ajax framework which allow us to use Ajax feature when we build the module. One of Ajax feature that we can develop in Drupal module is Ajax dropdown list. In this tutorial, we will see how create it. For the example, we will create two dropdown list, one contains the list of provinces which already populated at page load, and the other one will be filled dynamically with the cities list based on the selected item in province dropdown list.
When developing a module for Drupal 7 you can display the query result into a table and then display it along with the pagination. You can do it relatively easy with functions provided by Drupal. Look at the code below to see how to create a table with pagination in Drupal 7.