I am a Drupal Developer

Disable Javascript Aggregation on specific pages

Disable Javascript Aggregation on specific pages

26 December 2009 by jay boodhun

Aggregating Javascript which also Gzip and minifies all js files into one may case some problems as TinyMCE or FCK Editor and some jquery functionalities like expand / Collapse might not work.

1 Comments  Read more...
Create Drupal User programatically (with profile field values)

Create Drupal User programatically (with profile field values)

15 December 2009 by jay boodhun

While i was working on a project recently, i needed to create user accounts programatically through my own module, save some profile fields information and also assign a role to these new users.

8 Comments  Read more...
Drupal for Firebug

Drupal for Firebug

13 December 2009 by jay boodhun

This is a very useful plugin for firefox that can be used to debug query information from your Drupal site whilst in development. This plugin extends the Firefox browser's Firebug module and displays Devel information in your firebug console.

0 Comments  Read more...
Create Image Submit Button with hook_form_alter in Drupal

Create Image Submit Button with hook_form_alter in Drupal

10 December 2009 by jay boodhun

With most of the sites i built there has been a need for me to use customised submit buttons. While some of them were fine with just CSS, some required image buttons to be used. Drupal form api doesn't support input submit button type as image, so i had to use the help of PHPtemplate overrides and hook_form_alter to achieve this.

1 Comments  Read more...
Displaying CCK content in Drupal Views RSS

Displaying CCK content in Drupal Views RSS

09 December 2009 by jay boodhun

The only thing that shows up using the built-in configuration in Views RSS is the non-cck parts of a node, namely Title ,Body and Teaser.
So after a lot of digging around on Drupal forums i came across this solution which seems to work pretty well.

0 Comments  Read more...