Would you like to be notified for every new articles? Please click HERE to subscribe for newsletter.

Blog

PHP Script For Updating Drupal Core

  • Posted on: 15 August 2013
  • By: admin

Updating Drupal core can be a difficult process because Drupal still doesn't support core update in online way. We must download the core first, extract it, then upload it to our server manually. This process can take more time because of so many manual operations. In order to solve that problem, I try to create a PHP script to make the update process easier. We just need to open a URL with some query string and then the script will download the requested Drupal core to our server. What we need to do next is run the update.php.

Tags: 

Ajax Popup Search With JQuery Lookup Box

  • Posted on: 30 July 2013
  • By: admin

Lookup Box is name for this jQuery plugin. This plugin can help you to create an Ajax popup window to search the data from database then put it into your texfield after you click it. For the example, you might want to enter User Id in a textbox but you only know the User Name. With this plugin, you can search the user by the name in a popup window. When you click the User Name, the text field will be filled with User Id automatically.

Add Filter Criteria To Drupal Commerce Product Administration Page

  • Posted on: 2 January 2013
  • By: admin

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.

Creating Ajax Dropdown In Drupal 7

  • Posted on: 24 May 2012
  • By: admin

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.

Tags: 

Pages