Article Archives
Read and get updated on how we progress.

How to check whether Boost module is working on our Drupal site?
For improving the performance of the drupal side we always add the boost module. We need to configure the boost module to improve the performance of…
Read More >>
How to create an ajax form to display the entered text above the form
Creation an ajax form in simple in Drupal. This article helps to create a simple ajax form to show the entered text above the form without any page…
Read More >>
How to handle Drupal 7 date field styling for date month and year separately.
For one of my drupal site need to display a upcomming events and the events list need to display the date and month. The date need to be there above…
Read More >>
How to Enable Mailchimp in Drupal?
Mailchimp is a Email delivery service. It can be used in drupal sites for sending emails for our subscribers . Drupal Provides a mailchimp module for…
Read More >>
How to render a custom form block and a webform block in a single block?
This Example here shows how we can render one custom form block and a webform block in another single block. function MYMODULE_block_info() {…
Read More >>
How to write a page tpl file for a node type?
Add this code to your theme template.php function theme_preprocess_page(&$variables) { if (isset($variables['node'])) { $variables['…
Read More >>