Article Archives

Read and get updated on how we progress.

How to get the Latitude and Longitude from Address?

With the help of Latitude and Longitude, we can easily locate the places. Using the below code, You can get the Latitude and Longitude from Address…

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 create a simple accordion using Bootstrap?

Accordions are very useful GUI (Graphical user interface) element when toggle between  showing and hiding the data. We can make a basic Accordion…

Read More >>

How to Create PPT,PPTX,PDF slideshows in Drupal

The plugin used to create ppt slide show is GroupDocs.viewer plugin. 1. First, you have to create a GroupDocs account. This account is used to…

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 >>

How to unblock an IP after several failed log in attempts in Drupal

It is common that the IP must be blocked after 5 or more failed login attempts in Drupal.This can be overcome by following these simple steps.   …

Read More >>