If you want to send verification sms in drupal when user is registering, While registering user will receive a verification code on their mobile number, after that the code has to re-enter the code on the next step of user registration, so that we have the correct mobile number of user. For this to work […]
Continue readingHow to Create Content Type in Drupal, This is a simple tutorial for creating content type in drupal, Here i’m showing in drupal 6 and drupal 7, Both ways are almost same. For easy navigation in drupal admin, i’m using Administration Module, You can find the link bottom of the article. For Creating a content type […]
Continue readingDrupal supports implementing SMS gateway, For implementing SMS Gateway we have to use smsframework module, after that install the clickatell module, after installing these modules enable the following modules under the SMS Framework section.
Continue readingHow to add a CCK field in Drupal, is an simple article to show how you can add extra content fields in Drupal 7. First of all you have to install the module cck (content construction kit) if you are using Drupal 6, in Drupal 7 CCK is inbuilt into Drupal core. Content types in drupal […]
Continue readingIf you want to send email notifications when a new content is published, For this to achieve you need to install rules module, this rules module depends upon token and entity modules. Install those dependency modules and activate them.
Continue readingIf you want to customize the way post date and author name is displayed in nodes like the one in the picture, you have to modify drupal theme files and add some php code. First, open up template.php from drupal theme, then we have to create function in template.php file, and this code at the […]
Continue readingIn drupal 6 post settings is under the Content Management => Post Settings, Post Settings contains “Number of posts on main page” this is the maximum number of posts to display on single page, if more than that it will display as pagination.
Continue readingThis is simple Drupal Module to display form, before creating module we need to create module directory under your-drupal-installation\all\sites\modules, Create folder with module name, here i’m creating module name with “codingcyber“. In that folder create two more files
Continue reading